Silence chmod() warnings (operation not permitted) when using CIFS mounts and possibly other cases.

This commit is contained in:
martinml
2012-04-20 21:01:06 +03:00
parent 944a014636
commit 3eecc609f4
+1 -1
View 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;
}