diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2015-12-20 09:00:55 +0100 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2015-12-20 09:00:55 +0100 |
commit | a2190ac74dd4d7080b12bab90e552d7aa81209ef (patch) | |
tree | 8b31f38de9882d18df54cf8d9e0de74167a094eb /includes/filebackend/TempFSFile.php | |
parent | 15e69f7b20b6596b9148030acce5b59993b95a45 (diff) | |
parent | 257401d8b2cf661adf36c84b0e3fd1cf85e33c22 (diff) |
Merge branch 'mw-1.26'
Diffstat (limited to 'includes/filebackend/TempFSFile.php')
-rw-r--r-- | includes/filebackend/TempFSFile.php | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/includes/filebackend/TempFSFile.php b/includes/filebackend/TempFSFile.php index 791be7fc..46b53600 100644 --- a/includes/filebackend/TempFSFile.php +++ b/includes/filebackend/TempFSFile.php @@ -59,15 +59,14 @@ class TempFSFile extends FSFile { $ext = ( $extension != '' ) ? ".{$extension}" : ""; for ( $attempt = 1; true; $attempt++ ) { $path = "{$base}-{$attempt}{$ext}"; - wfSuppressWarnings(); + MediaWiki\suppressWarnings(); $newFileHandle = fopen( $path, 'x' ); - wfRestoreWarnings(); + MediaWiki\restoreWarnings(); if ( $newFileHandle ) { fclose( $newFileHandle ); break; // got it } if ( $attempt >= 5 ) { - return null; // give up } } @@ -84,9 +83,9 @@ class TempFSFile extends FSFile { */ public function purge() { $this->canDelete = false; // done - wfSuppressWarnings(); + MediaWiki\suppressWarnings(); $ok = unlink( $this->path ); - wfRestoreWarnings(); + MediaWiki\restoreWarnings(); unset( self::$pathsCollect[$this->path] ); @@ -96,7 +95,7 @@ class TempFSFile extends FSFile { /** * Clean up the temporary file only after an object goes out of scope * - * @param stdClass $object + * @param object $object * @return TempFSFile This object */ public function bind( $object ) { @@ -144,9 +143,9 @@ class TempFSFile extends FSFile { */ public static function purgeAllOnShutdown() { foreach ( self::$pathsCollect as $path ) { - wfSuppressWarnings(); + MediaWiki\suppressWarnings(); unlink( $path ); - wfRestoreWarnings(); + MediaWiki\restoreWarnings(); } } |