From bfc89c6adea24b4efd790bc452588cf04e545139 Mon Sep 17 00:00:00 2001 From: Ian Baker Date: Wed, 14 Sep 2011 17:23:09 +0000 Subject: [PATCH] Fixed incorrect userId reference --- includes/upload/UploadStash.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/upload/UploadStash.php b/includes/upload/UploadStash.php index 9bdcc1b63b..3d624a58da 100644 --- a/includes/upload/UploadStash.php +++ b/includes/upload/UploadStash.php @@ -274,7 +274,7 @@ class UploadStash { throw new UploadStashNotLoggedInException( __METHOD__ . ' No user is logged in, files must belong to users' ); } - wfDebug( __METHOD__ . " clearing all rows for user $userId\n" ); + wfDebug( __METHOD__ . ' clearing all rows for user ' . $this->userId . "\n" ); $dbw = $this->repo->getMasterDb(); $dbw->delete( 'uploadstash', -- 2.20.1