From cb1c884d6fba89d6a6a28cea99f3e8c8f6b78122 Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Sat, 4 Jun 2011 20:28:59 +0000 Subject: [PATCH] Fix for r89474: added missing () to function call --- includes/StubObject.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/StubObject.php b/includes/StubObject.php index 8b2c8dbfd9..951cbaea4d 100644 --- a/includes/StubObject.php +++ b/includes/StubObject.php @@ -148,6 +148,6 @@ class StubUserLang extends StubObject { } function _newObject() { - return RequestContext::getMain()->getLang; + return RequestContext::getMain()->getLang(); } } -- 2.20.1