Index: branches/REL1_16/phase3/includes/search/SearchSqlite.php |
— | — | @@ -323,8 +323,8 @@ |
324 | 324 | $dbw = wfGetDB( DB_MASTER ); |
325 | 325 | |
326 | 326 | $dbw->update( 'searchindex', |
| 327 | + array( 'si_title' => $title ), |
327 | 328 | array( 'rowid' => $id ), |
328 | | - array( 'si_title' => $title ), |
329 | 329 | __METHOD__ ); |
330 | 330 | } |
331 | 331 | } |
Property changes on: branches/REL1_16/phase3/includes/search/SearchSqlite.php |
___________________________________________________________________ |
Added: svn:mergeinfo |
332 | 332 | Merged /branches/wmf-deployment/includes/search/SearchSqlite.php:r53381 |
333 | 333 | Merged /branches/REL1_15/phase3/includes/search/SearchSqlite.php:r51646 |
334 | 334 | Merged /branches/sqlite/includes/search/SearchSqlite.php:r58211-58321 |
335 | 335 | Merged /trunk/phase3/includes/search/SearchSqlite.php:r63549,63764,63897-63901,64876,64881,64948,68629 |
Index: branches/REL1_16/phase3/RELEASE-NOTES |
— | — | @@ -59,6 +59,8 @@ |
60 | 60 | * Disabled $wgHitcounterUpdateFreq>1 feature on SQLite, does not work yet. |
61 | 61 | * (bug 23465) Don't ignore the predefined destination filename on |
62 | 62 | Special:Upload after following a red link to a file. |
| 63 | +* In SQLite full-text search feature: fixed "move page" feature, was non- |
| 64 | + functional. |
63 | 65 | |
64 | 66 | == Changes since 1.16 beta 2 == |
65 | 67 | |