Removed usage of error suppression operator

This commit is contained in:
Alexandre Emsenhuber 2011-06-03 10:20:45 +00:00
parent 35dbdb618f
commit c9bad93715

View file

@ -189,7 +189,9 @@ class MessageCache {
fwrite( $file, $hash . $serialized );
fclose( $file );
@chmod( $filename, 0666 );
wfSuppressWarnings();
chmod( $filename, 0666 );
wfRestoreWarnings();
}
function saveToScript( $array, $hash, $code ) {