Silence chmod() warnings (operation not permitted) when using CIFS mounts and possibl...
authormartinml <github@martinml.com>
Fri, 20 Apr 2012 18:01:06 +0000 (21:01 +0300)
committermartinml <github@martinml.com>
Fri, 20 Apr 2012 18:01:06 +0000 (21:01 +0300)
lib/Twig/Environment.php

index 6c47326..88eaf90 100644 (file)
@@ -1069,7 +1069,7 @@ class Twig_Environment
         if (false !== @file_put_contents($tmpFile, $content)) {
             // rename does not work on Win32 before 5.2.6
             if (@rename($tmpFile, $file) || (@copy($tmpFile, $file) && unlink($tmpFile))) {
-                chmod($file, 0644);
+                @chmod($file, 0644);
 
                 return;
             }