Просмотр исходного кода

Removes debugging code remnant. Fixes ZF-9355

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@21674 44c647ce-9c0f-0410-b52a-842ac1e357ba
padraic 16 лет назад
Родитель
Сommit
fbd9ec5602
1 измененных файлов с 0 добавлено и 1 удалено
  1. 0 1
      library/Zend/Cache/Backend/Static.php

+ 0 - 1
library/Zend/Cache/Backend/Static.php

@@ -233,7 +233,6 @@ class Zend_Cache_Backend_Static
         if ($extension) $ext = $extension;
         $file = rtrim($pathName, '/') . '/' . $fileName . $ext;
         if ($this->_options['file_locking']) {
-            file_put_contents('/var/www/data.dump', $file.$data);
             $result = file_put_contents($file, $data, LOCK_EX);
         } else {
             $result = file_put_contents($file, $data);