Index: trunk/phase3/includes/db/DatabaseSqlite.php |
— | — | @@ -455,6 +455,13 @@ |
456 | 456 | public function lockTables( $read, $write, $method ) {} |
457 | 457 | |
458 | 458 | public function unlockTables( $method ) {} |
| 459 | + |
| 460 | + /* |
| 461 | + * Build a concatenation list to feed into a SQL query |
| 462 | + */ |
| 463 | + function buildConcat( $stringList ) { |
| 464 | + return implode( ' || ', $stringList ); |
| 465 | + } |
459 | 466 | |
460 | 467 | } // end DatabaseSqlite class |
461 | 468 | |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -250,6 +250,7 @@ |
251 | 251 | * Removed repetition of URIs in the title attributes of external links. |
252 | 252 | * (bug 19693) User name is now escaped in "Contributions for ..." link on |
253 | 253 | Special:BlockIP |
| 254 | +* (bug 19571) Override buildConcat for SQLite. |
254 | 255 | |
255 | 256 | == API changes in 1.16 == |
256 | 257 | |