Code: Select all
Warning: current() [function.current]: Passed variable is not an array or object in /V2/db/sql_cache.php on line 74
Warning: next() [function.next]: Passed variable is not an array or object in /V2/db/sql_cache.php on line 75
Code: Select all
Warning: current() [function.current]: Passed variable is not an array or object in /db/sql_cache.php on line 74
Warning: next() [function.next]: Passed variable is not an array or object in /db/sql_cache.php on line 75
Code: Select all
Warning: current() [function.current]: Passed variable is not an array or object in /db/sql_cache.php on line 74
Warning: next() [function.next]: Passed variable is not an array or object in /db/sql_cache.php on line 75
Code: Select all
addslashes ( serialize ( $cache_data )
replace with
addcslashes( addslashes ( serialize ( $cache_data ) ), '\\' )
Code: Select all
addslashes ( serialize ( $cache_data )
replace with
addcslashes( addslashes ( serialize ( $cache_data ) ), '\\\'' )