From: Tim Starling Date: Mon, 15 Jun 2009 06:54:40 +0000 (+0000) Subject: Remove $resultset->free() calls, as in live hack. The calls are unnecessary, removing... X-Git-Tag: 1.31.0-rc.0~41376 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/password.php?a=commitdiff_plain;h=ba9468ec2441599965484826a45d569b6f6c825c;p=lhc%2Fweb%2Fwiklou.git Remove $resultset->free() calls, as in live hack. The calls are unnecessary, removing probably fixes some bug. --- diff --git a/includes/Export.php b/includes/Export.php index 56d555e210..4d4f39b09e 100644 --- a/includes/Export.php +++ b/includes/Export.php @@ -325,7 +325,6 @@ class WikiExporter { $output .= $this->writer->closePage(); $this->sink->writeClosePage( $output ); } - $resultset->free(); } protected function outputLogStream( $resultset ) { @@ -333,7 +332,6 @@ class WikiExporter { $output = $this->writer->writeLogItem( $row ); $this->sink->writeLogItem( $row, $output ); } - $resultset->free(); } }