Parcourir la source

ZF-11157
Split two instructions on same line onto separate lines


git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@23906 44c647ce-9c0f-0410-b52a-842ac1e357ba

adamlundrigan il y a 14 ans
Parent
commit
142f70f88c
1 fichiers modifiés avec 2 ajouts et 1 suppressions
  1. 2 1
      library/Zend/Search/Lucene/Storage/Directory/Filesystem.php

+ 2 - 1
library/Zend/Search/Lucene/Storage/Directory/Filesystem.php

@@ -206,7 +206,8 @@ class Zend_Search_Lucene_Storage_Directory_Filesystem extends Zend_Search_Lucene
         unset($this->_fileHandlers[$filename]);
 
         global $php_errormsg;
-        $trackErrors = ini_get('track_errors'); ini_set('track_errors', '1');
+        $trackErrors = ini_get('track_errors');
+        ini_set('track_errors', '1');
         if (!@unlink($this->_dirPath . '/' . $filename)) {
             ini_set('track_errors', $trackErrors);
             require_once 'Zend/Search/Lucene/Exception.php';