Menu

#163 ereg_replace error solved

open
nobody
Bugs (85)
5
2013-02-27
2013-02-27
No

since PHP version 5.3.0. the funktion "ereg_replace" does exist no longer. This causes lots of error-messages in longer text-fields. To solve this problem change in the "phpMyEdit.class.php" the line "$value = ereg_replace("[\r\n\t ]+",' ',$value);" in my editor line number 1440 to "$value = str_replace("[\r\n\t ]+",' ',$value);". This should be considered in further versions.

Discussion


Log in to post a comment.