Niel Hirjee - 2014-10-02

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());
 

Last edit: Niel Hirjee 2014-10-02