|
|
@@ -947,10 +947,6 @@ class Zend_Cache_Backend_File extends Zend_Cache_Backend implements Zend_Cache_B
|
|
|
if (!is_file($file)) {
|
|
|
return false;
|
|
|
}
|
|
|
- if (function_exists('get_magic_quotes_runtime')) {
|
|
|
- $mqr = @get_magic_quotes_runtime();
|
|
|
- @set_magic_quotes_runtime(0);
|
|
|
- }
|
|
|
$f = @fopen($file, 'rb');
|
|
|
if ($f) {
|
|
|
if ($this->_options['file_locking']) @flock($f, LOCK_SH);
|