Missing line break in wfDebug() call
authorAlexandre Emsenhuber <ialex@users.mediawiki.org>
Tue, 1 Mar 2011 08:55:13 +0000 (08:55 +0000)
committerAlexandre Emsenhuber <ialex@users.mediawiki.org>
Tue, 1 Mar 2011 08:55:13 +0000 (08:55 +0000)
includes/Title.php

index 399eb49..f289bd4 100644 (file)
@@ -4129,7 +4129,7 @@ class Title {
                wfRunHooks( 'TitleGetRestrictionTypes', array( $this, &$types ) );
                
                wfDebug( __METHOD__ . ': applicable restriction types for ' . 
-                       $this->getPrefixedText() . ' are ' . implode( ',', $types ) );
+                       $this->getPrefixedText() . ' are ' . implode( ',', $types ) . "\n" );
 
                return $types;
        }