From: Aaron Schulz Date: Wed, 11 Feb 2015 22:21:16 +0000 (-0800) Subject: Fixed FileRepo::newGood handling of $value X-Git-Tag: 1.31.0-rc.0~12442 X-Git-Url: http://git.cyclocoop.org/%7D%7Cconcat%7B?a=commitdiff_plain;h=6c59d1689980842fc7c12570762c6844cff02971;p=lhc%2Fweb%2Fwiklou.git Fixed FileRepo::newGood handling of $value bug: T89296 Change-Id: Icc2cc058d99a972bc0b243c94c49326627aa89b5 --- diff --git a/includes/filerepo/FileRepo.php b/includes/filerepo/FileRepo.php index 03934165b3..d1a16b5460 100644 --- a/includes/filerepo/FileRepo.php +++ b/includes/filerepo/FileRepo.php @@ -1697,7 +1697,7 @@ class FileRepo { * @return Status */ public function newGood( $value = null ) { - $status = Status::newGood( $this, $value ); + $status = Status::newGood( $value ); $status->cleanCallback = $this->getErrorCleanupFunction(); return $status;