1
0

Remove eregi calls

This commit is contained in:
Garvin Hicking
2009-08-21 12:22:35 +00:00
parent 3a77f13428
commit 4e258686fb
2 changed files with 5 additions and 5 deletions

View File

@ -60,7 +60,7 @@ class s9y_remoterss_XMLTree {
// Global replacements
// by: waldo@wh-e.com - trim space around tags not within
$data = eregi_replace('>[[:space:]]+<', '><', $data);
$data = preg_replace('@>[[:space:]]+<@', '><', $data);
// Flatten the input opml file to not have nested categories
$data = preg_replace('@<outline[^>]+[^/]>@imsU', '', $data);