Browse Source

[HttpKernel] fixed typo

Fabien Potencier 14 years ago
parent
commit
bfd57c5cf0
1 changed files with 1 additions and 1 deletions
  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();
         umask($umask);
 
-        foreach ($this->toIterator(files) as $file) {
+        foreach ($this->toIterator($files) as $file) {
             chmod($file, $mode);
         }