From ba9468ec2441599965484826a45d569b6f6c825c Mon Sep 17 00:00:00 2001 From: Tim Starling Date: Mon, 15 Jun 2009 06:54:40 +0000 Subject: [PATCH] Remove $resultset->free() calls, as in live hack. The calls are unnecessary, removing probably fixes some bug. --- includes/Export.php | 2 -- 1 file changed, 2 deletions(-) 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(); } } -- 2.20.1