diff options
author | alecpl <alec@alec.pl> | 2009-05-04 08:31:55 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2009-05-04 08:31:55 +0000 |
commit | 23a2eec4d540b5f971ed6377e7ad776456ee0633 (patch) | |
tree | 34081a5830cb6c2c843dbf3b873bf2643400c134 /program/include/rcube_html_page.php | |
parent | db5abc6c211d78ad80b716ddef11eabe5e32f137 (diff) |
- ereg -> preg
Diffstat (limited to 'program/include/rcube_html_page.php')
-rw-r--r-- | program/include/rcube_html_page.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcube_html_page.php b/program/include/rcube_html_page.php index c83c6aeea..b8db7b37a 100644 --- a/program/include/rcube_html_page.php +++ b/program/include/rcube_html_page.php @@ -54,7 +54,7 @@ class rcube_html_page { static $sa_files = array(); - if (!ereg('^https?://', $file) && $file[0] != '/') + if (!preg_match('|^https?://|i', $file) && $file[0] != '/') $file = $this->scripts_path . $file; if (in_array($file, $sa_files)) { |