In quickcache_main.php:
Replace the following lines
$key = eregi_replace("[^A-Z,0-9,=]", "_", quickcache_scriptkey()); $key .= ".".eregi_replace("[^A-Z,0-9,=]", "_", quickcache_varkey());
With the following lines
$key = preg_replace("/[^A-Z,0-9,=]/", "_", quickcache_scriptkey()); $key .= ".".preg_replace("/[^A-Z,0-9,=]/", "_", quickcache_varkey());
Log in to post a comment.
In quickcache_main.php:
Replace the following lines
With the following lines
Last edit: Niel Hirjee 2014-10-02