From: Alexandre Emsenhuber Date: Sat, 4 Jun 2011 20:28:59 +0000 (+0000) Subject: Fix for r89474: added missing () to function call X-Git-Tag: 1.31.0-rc.0~29715 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/pie.php?a=commitdiff_plain;h=cb1c884d6fba89d6a6a28cea99f3e8c8f6b78122;p=lhc%2Fweb%2Fwiklou.git Fix for r89474: added missing () to function call --- 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(); } }