From cbf385a5238aab782151338d4b955d17565ffab7 Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Thu, 2 Jan 2014 11:58:28 -0800 Subject: [PATCH] MWException doesn't care about $wgTitle anymore Change-Id: I59a54280496cc5bbc953948f16a6cb20790d3c56 --- includes/Exception.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/includes/Exception.php b/includes/Exception.php index 4548345cbf..5377add7ec 100644 --- a/includes/Exception.php +++ b/includes/Exception.php @@ -38,8 +38,7 @@ class MWException extends Exception { function useOutputPage() { return $this->useMessageCache() && !empty( $GLOBALS['wgFullyInitialised'] ) && - !empty( $GLOBALS['wgOut'] ) && - !empty( $GLOBALS['wgTitle'] ); + !empty( $GLOBALS['wgOut'] ); } /** -- 2.20.1