Add missing line breaks to wfDebug() calls
[lhc/web/wiklou.git] / includes / specials / SpecialUploadStash.php
index 964bea1..33883b0 100644 (file)
@@ -339,7 +339,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(), true ) );
+                       wfDebug( 'stash has: ' . print_r( $stash->listFiles(), true ) . "\n" );
 
                        if ( !$stash->clear() ) {
                                return Status::newFatal( 'uploadstash-errclear' );