From d60c4d09e7b1e5a0348a379a3a45d7ebe18c7a0c Mon Sep 17 00:00:00 2001 From: Platonides Date: Wed, 9 Feb 2011 17:05:25 +0000 Subject: [PATCH] 1 to true in boolean parameter --- includes/specials/SpecialUploadStash.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/specials/SpecialUploadStash.php b/includes/specials/SpecialUploadStash.php index 885c1bcda7..0c6d0d6096 100644 --- a/includes/specials/SpecialUploadStash.php +++ b/includes/specials/SpecialUploadStash.php @@ -293,7 +293,7 @@ class SpecialUploadStash extends UnlistedSpecialPage { public static function tryClearStashedUploads( $formData ) { if ( isset( $formData['Clear'] ) ) { $stash = RepoGroup::singleton()->getLocalRepo()->getUploadStash(); - wfDebug( "stash has: " . print_r( $stash->listFiles(), 1 ) ); + wfDebug( "stash has: " . print_r( $stash->listFiles(), true ) ); if ( ! $stash->clear() ) { return Status::newFatal( 'uploadstash-errclear' ); } -- 2.20.1