remove extra whitespace; testing commit notifications
[lhc/web/wiklou.git] / includes / SearchMySQL.php
index 87878b6..f7d3bfb 100644 (file)
@@ -22,7 +22,6 @@
  * Specific bits for MySQL 3 and 4 variants are in child classes.
  * @addtogroup Search
  */
-
 class SearchMySQL extends SearchEngine {
        /**
         * Perform a full text search query and return a result set.
@@ -176,6 +175,9 @@ class SearchMySQL extends SearchEngine {
        }
 }
 
+/**
+ * @addtogroup Search
+ */
 class MySQLSearchResultSet extends SearchResultSet {
        function MySQLSearchResultSet( $resultSet, $terms ) {
                $this->mResultSet = $resultSet;
@@ -198,6 +200,10 @@ class MySQLSearchResultSet extends SearchResultSet {
                        return new SearchResult( $row );
                }
        }
+       
+       function free() {
+               $this->mResultSet->free();
+       }
 }
 
 ?>