From: Platonides Date: Wed, 9 Feb 2011 17:05:25 +0000 (+0000) Subject: 1 to true in boolean parameter X-Git-Tag: 1.31.0-rc.0~32095 X-Git-Url: http://git.cyclocoop.org/%24action?a=commitdiff_plain;h=d60c4d09e7b1e5a0348a379a3a45d7ebe18c7a0c;p=lhc%2Fweb%2Fwiklou.git 1 to true in boolean parameter --- 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' ); }