fixed some doxygen warnings
authorAlexandre Emsenhuber <ialex@users.mediawiki.org>
Fri, 14 May 2010 20:51:16 +0000 (20:51 +0000)
committerAlexandre Emsenhuber <ialex@users.mediawiki.org>
Fri, 14 May 2010 20:51:16 +0000 (20:51 +0000)
includes/search/SearchIBM_DB2.php
includes/search/SearchOracle.php
includes/search/SearchPostgres.php

index d758718..b32a20c 100644 (file)
@@ -102,8 +102,8 @@ class SearchIBM_DB2 extends SearchEngine {
        /**
         * Construct the full SQL query to do the search.
         * The guts shoulds be constructed in queryMain()
-        * @param string $filteredTerm String
-        * @param bool $fulltext Boolean
+        * @param $filteredTerm String
+        * @param $fulltext Boolean
         */
        function getQuery( $filteredTerm, $fulltext ) {
                return $this->queryLimit($this->queryMain($filteredTerm, $fulltext) . ' ' .
@@ -125,8 +125,8 @@ class SearchIBM_DB2 extends SearchEngine {
        /**
         * Get the base part of the search query.
         *
-        * @param string $filteredTerm String
-        * @param bool $fulltext Boolean
+        * @param $filteredTerm String
+        * @param $fulltext Boolean
         * @return String
         */
        function queryMain( $filteredTerm, $fulltext ) {
index e4c5dee..2c820e0 100644 (file)
@@ -248,8 +248,8 @@ class SearchOracle extends SearchEngine {
         * Update a search index record's title only.
         * Title should be pre-processed.
         *
-        * @param int $id
-        * @param string $title
+        * @param $id Integer
+        * @param $title String
         */
        function updateTitle($id, $title) {
                $dbw = wfGetDB(DB_MASTER);
index 0006fa8..a38efa0 100644 (file)
@@ -129,8 +129,9 @@ class SearchPostgres extends SearchEngine {
 
        /**
         * Construct the full SQL query to do the search.
-        * @param $filteredTerm String
+        * @param $term String
         * @param $fulltext String
+        * @param $colname
         */
        function searchQuery( $term, $fulltext, $colname ) {
                global $wgDBversion;