Index: trunk/phase3/includes/search/SearchOracle.php |
— | — | @@ -248,8 +248,8 @@ |
249 | 249 | * Update a search index record's title only. |
250 | 250 | * Title should be pre-processed. |
251 | 251 | * |
252 | | - * @param int $id |
253 | | - * @param string $title |
| 252 | + * @param $id Integer |
| 253 | + * @param $title String |
254 | 254 | */ |
255 | 255 | function updateTitle($id, $title) { |
256 | 256 | $dbw = wfGetDB(DB_MASTER); |
Index: trunk/phase3/includes/search/SearchPostgres.php |
— | — | @@ -129,8 +129,9 @@ |
130 | 130 | |
131 | 131 | /** |
132 | 132 | * Construct the full SQL query to do the search. |
133 | | - * @param $filteredTerm String |
| 133 | + * @param $term String |
134 | 134 | * @param $fulltext String |
| 135 | + * @param $colname |
135 | 136 | */ |
136 | 137 | function searchQuery( $term, $fulltext, $colname ) { |
137 | 138 | global $wgDBversion; |
Index: trunk/phase3/includes/search/SearchIBM_DB2.php |
— | — | @@ -102,8 +102,8 @@ |
103 | 103 | /** |
104 | 104 | * Construct the full SQL query to do the search. |
105 | 105 | * The guts shoulds be constructed in queryMain() |
106 | | - * @param string $filteredTerm String |
107 | | - * @param bool $fulltext Boolean |
| 106 | + * @param $filteredTerm String |
| 107 | + * @param $fulltext Boolean |
108 | 108 | */ |
109 | 109 | function getQuery( $filteredTerm, $fulltext ) { |
110 | 110 | return $this->queryLimit($this->queryMain($filteredTerm, $fulltext) . ' ' . |
— | — | @@ -125,8 +125,8 @@ |
126 | 126 | /** |
127 | 127 | * Get the base part of the search query. |
128 | 128 | * |
129 | | - * @param string $filteredTerm String |
130 | | - * @param bool $fulltext Boolean |
| 129 | + * @param $filteredTerm String |
| 130 | + * @param $fulltext Boolean |
131 | 131 | * @return String |
132 | 132 | */ |
133 | 133 | function queryMain( $filteredTerm, $fulltext ) { |