From 6c59d1689980842fc7c12570762c6844cff02971 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Wed, 11 Feb 2015 14:21:16 -0800 Subject: [PATCH] Fixed FileRepo::newGood handling of $value bug: T89296 Change-Id: Icc2cc058d99a972bc0b243c94c49326627aa89b5 --- includes/filerepo/FileRepo.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.20.1