From bcb5bdb928f0293dbb04e3aaa49a67218b8f7752 Mon Sep 17 00:00:00 2001 From: Antoine Musso Date: Tue, 29 Nov 2011 10:52:26 +0000 Subject: [PATCH] nice debug msg for Title::getRestrictionTypes --- includes/Title.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/Title.php b/includes/Title.php index d1d1e78231..28defc58e9 100644 --- a/includes/Title.php +++ b/includes/Title.php @@ -4330,8 +4330,8 @@ class Title { wfRunHooks( 'TitleGetRestrictionTypes', array( $this, &$types ) ); - wfDebug( __METHOD__ . ': applicable restriction types for ' . - $this->getPrefixedText() . ' are ' . implode( ',', $types ) . "\n" ); + wfDebug( __METHOD__ . ': applicable restrictions to [[' . + $this->getPrefixedText() . ']] are {' . implode( ',', $types ) . "}\n" ); return $types; } -- 2.20.1