From: Michael Dale Date: Fri, 14 Aug 2009 18:56:45 +0000 (+0000) Subject: fixed variable name X-Git-Tag: 1.31.0-rc.0~40303 X-Git-Url: http://git.cyclocoop.org/%28?a=commitdiff_plain;h=16bf140f6691e86f5bbe2cd30428a6cba21b1129;p=lhc%2Fweb%2Fwiklou.git fixed variable name --- diff --git a/includes/HttpFunctions.php b/includes/HttpFunctions.php index cf29d675dc..465aa91904 100644 --- a/includes/HttpFunctions.php +++ b/includes/HttpFunctions.php @@ -292,7 +292,7 @@ class HttpRequest { // set the timeout to default sync timeout (unless the timeout option is provided) $this->timeout = ( isset( $opt['timeout'] ) ) ? $opt['timeout'] : $wgSyncHTTPTimeout; //check special key default - if($timeout == 'default'){ + if($this->timeout == 'default'){ $opts['timeout'] = $wgSyncHTTPTimeout; }