Changeset 3747 for trunk/install.php


Ignore:
Timestamp:
Aug 17, 2009, 6:21:09 PM (15 years ago)
Author:
Eric
Message:

PHP 5.3 compatibility - Deprecated functions were replace as follows :
ereg() -> preg_match()
ereg_replace() -> preg_replace()
eregi() -> preg_match() with the 'i' modifier
eregi_replace() -> preg_replace() with the 'i' modifier
set_magic_quotes_runtime() -> No more usefull. Fixed it by adding "@" prefix.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/install.php

    r3715 r3747  
    7373}
    7474
    75 set_magic_quotes_runtime(0); // Disable magic_quotes_runtime
     75@set_magic_quotes_runtime(0); // Disable magic_quotes_runtime
    7676//
    7777// addslashes to vars if magic_quotes_gpc is off this is a security
Note: See TracChangeset for help on using the changeset viewer.