From e325245df7d36621ca981d44357390c778dcdad2 Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Tue, 1 Mar 2011 08:55:13 +0000 Subject: [PATCH] Missing line break in wfDebug() call --- includes/Title.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.20.1