From fba745b359ce020e30281997c4b271c7a3b0fe79 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bartosz=20Dziewo=C5=84ski?= Date: Thu, 21 Jan 2016 23:56:16 +0100 Subject: [PATCH] UploadFromStash: Only remove stashed file on successful uploads Also, makes code shorter! Change-Id: I144d8a207c753bd9e38ac847a0fc61257f11e54d --- includes/upload/UploadFromStash.php | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/includes/upload/UploadFromStash.php b/includes/upload/UploadFromStash.php index 75540c1de7..1276842365 100644 --- a/includes/upload/UploadFromStash.php +++ b/includes/upload/UploadFromStash.php @@ -178,17 +178,10 @@ class UploadFromStash extends UploadBase { } /** - * Perform the upload, then remove the database record afterward. - * @param string $comment - * @param string $pageText - * @param bool $watch - * @param User $user - * @return Status + * Remove the database record after a successful upload. */ - public function performUpload( $comment, $pageText, $watch, $user ) { - $rv = parent::performUpload( $comment, $pageText, $watch, $user ); + public function postProcessUpload() { + parent::postProcessUpload(); $this->unsaveUploadedFile(); - - return $rv; } } -- 2.20.1