summaryrefslogtreecommitdiff
path: root/includes/SearchMySQL.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/SearchMySQL.php')
-rw-r--r--includes/SearchMySQL.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/includes/SearchMySQL.php b/includes/SearchMySQL.php
index 0e02a684..905075ef 100644
--- a/includes/SearchMySQL.php
+++ b/includes/SearchMySQL.php
@@ -200,6 +200,10 @@ class MySQLSearchResultSet extends SearchResultSet {
return new SearchResult( $row );
}
}
+
+ function free() {
+ $this->mResultSet->free();
+ }
}
-?>
+