r89404 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r89403‎ | r89404 | r89405 >
Date:10:20, 3 June 2011
Author:ialex
Status:ok
Tags:
Comment:
Removed usage of error suppression operator
Modified paths:
  • /trunk/phase3/includes/cache/MessageCache.php (modified) (history)

Diff [purge]

Index: trunk/phase3/includes/cache/MessageCache.php
@@ -189,7 +189,9 @@
190190
191191 fwrite( $file, $hash . $serialized );
192192 fclose( $file );
193 - @chmod( $filename, 0666 );
 193+ wfSuppressWarnings();
 194+ chmod( $filename, 0666 );
 195+ wfRestoreWarnings();
194196 }
195197
196198 function saveToScript( $array, $hash, $code ) {

Status & tagging log