i have this error in class.upload.php
Deprecated: Function ereg() is deprecated in /home/sexywap/public_html/web/class.upload.php on line 1690
Deprecated: Function ereg_replace() is deprecated in /home/sexywap/public_html/web/class.upload.php on line 1856
and
never come across an error like that before .
Deprecated: Function ereg() is deprecated in /home/sexywap/public_html/web/class.upload.php on line 1690
Deprecated: Function ereg_replace() is deprecated in /home/sexywap/public_html/web/class.upload.php on line 1856
Code:
if ($this->uploaded) { $this->log .= '- ' . _("file name OK") . '<br />'; 1690 >>>>>>> ereg('\.([^\.]*$)', $this->file_src_name, $extension); <<<<<<<< if (is_array($extension)) { $this->file_src_name_ext = strtolower($extension[1]); $this->file_src_name_body = substr($this->file_src_name, 0, ((strlen($this->file_src_name) - strlen($this->file_src_name_ext)))-1);
Code:
if ($this->file_safe_name) { // formats the name $this->file_dst_name_body = str_replace(array(' ', '-'), array('_','_'), $this->file_dst_name_body) ; 1856 >>>>>> $this->file_dst_name_body = ereg_replace('[^A-Za-z0-9_]', '', $this->file_dst_name_body) ; $this->log .= '- ' . _("file name safe format") . '<br />';
Comment