Explorar el Código

[HttpKernel] fixed typo

Fabien Potencier hace 14 años
padre
commit
bfd57c5cf0
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/Symfony/Component/HttpKernel/Util/Filesystem.php

+ 1 - 1
src/Symfony/Component/HttpKernel/Util/Filesystem.php

@@ -115,7 +115,7 @@ class Filesystem
         $currentUmask = umask();
         $currentUmask = umask();
         umask($umask);
         umask($umask);
 
 
-        foreach ($this->toIterator(files) as $file) {
+        foreach ($this->toIterator($files) as $file) {
             chmod($file, $mode);
             chmod($file, $mode);
         }
         }