From 16bf140f6691e86f5bbe2cd30428a6cba21b1129 Mon Sep 17 00:00:00 2001 From: Michael Dale Date: Fri, 14 Aug 2009 18:56:45 +0000 Subject: [PATCH] fixed variable name --- includes/HttpFunctions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.20.1