From 09149f2ea46dcbb1cb78635aba4d16e43d0b220d Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Tue, 23 Sep 2014 12:18:57 +0200 Subject: [PATCH] Add missing space to log message Follow-up I72c5c3fb75 (6fc2e603). Change-Id: I9375da8542b3c2fb33cf0b692ab38722445081bc --- includes/context/RequestContext.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/context/RequestContext.php b/includes/context/RequestContext.php index db57371189..952af8cdeb 100644 --- a/includes/context/RequestContext.php +++ b/includes/context/RequestContext.php @@ -140,7 +140,7 @@ class RequestContext implements IContextSource { if ( $this->title === null ) { global $wgTitle; # fallback to $wg till we can improve this $this->title = $wgTitle; - wfDebugLog( 'GlobalTitleFail', __METHOD__ . ' called by ' . wfGetCaller() . 'with no title set.' ); + wfDebugLog( 'GlobalTitleFail', __METHOD__ . ' called by ' . wfGetCaller() . ' with no title set.' ); } return $this->title; -- 2.20.1