Add missing space to log message
authorAlexandre Emsenhuber <mediawiki@emsenhuber.ch>
Tue, 23 Sep 2014 10:18:57 +0000 (12:18 +0200)
committerAlexandre Emsenhuber <mediawiki@emsenhuber.ch>
Tue, 23 Sep 2014 10:18:57 +0000 (12:18 +0200)
Follow-up I72c5c3fb75 (6fc2e603).

Change-Id: I9375da8542b3c2fb33cf0b692ab38722445081bc

includes/context/RequestContext.php

index db57371..952af8c 100644 (file)
@@ -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;