Ac3sRwild / ruTorrent-plugins

Custom plugins for ruTorrent web-ui
8 stars 5 forks source link

ereg_replace is deprecated #1

Open smasher816 opened 8 years ago

smasher816 commented 8 years ago

Switching to preg_replace in the nfo plugin fixes my 500 errors.

Nodens- commented 7 years ago

In order to help out those who don't know how to replace the function call as pattern matching is not identical between the two functions, the 3 lines to be replaced in action.php should become: $s = preg_replace("/([ -~])\x131([ -~])/", "/\\x1\xD9\\x2/", $s); // ? $s = preg_replace("/([ -~])\x130([ -~])/", "/\\x1\xD8\\x2/", $s); // Ä $s = preg_replace("/([ -~])\x146([ -~])/", "/\\x1\xE7\\x2/", $s); // Ö

Ac3sRwild commented 6 years ago

Will update code asap. Thanks