UploadFromStash: Only remove stashed file on successful uploads
authorBartosz Dziewoński <matma.rex@gmail.com>
Thu, 21 Jan 2016 22:56:16 +0000 (23:56 +0100)
committerBartosz Dziewoński <matma.rex@gmail.com>
Thu, 21 Jan 2016 22:56:16 +0000 (23:56 +0100)
Also, makes code shorter!

Change-Id: I144d8a207c753bd9e38ac847a0fc61257f11e54d

includes/upload/UploadFromStash.php

index 75540c1..1276842 100644 (file)
@@ -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;
        }
 }