From: Alexandre Emsenhuber Date: Tue, 1 Mar 2011 08:55:13 +0000 (+0000) Subject: Missing line break in wfDebug() call X-Git-Tag: 1.31.0-rc.0~31708 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/pie.php?a=commitdiff_plain;h=e325245df7d36621ca981d44357390c778dcdad2;p=lhc%2Fweb%2Fwiklou.git Missing line break in wfDebug() call --- diff --git a/includes/Title.php b/includes/Title.php index 399eb49688..f289bd4658 100644 --- a/includes/Title.php +++ b/includes/Title.php @@ -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; }