Index: branches/REL1_15/phase3/includes/db/DatabaseSqlite.php |
— | — | @@ -497,6 +497,13 @@ |
498 | 498 | return $s; |
499 | 499 | } |
500 | 500 | |
| 501 | + /* |
| 502 | + * Build a concatenation list to feed into a SQL query |
| 503 | + */ |
| 504 | + function buildConcat( $stringList ) { |
| 505 | + return '(' . implode( ') || (', $stringList ) . ')'; |
| 506 | + } |
| 507 | + |
501 | 508 | } // end DatabaseSqlite class |
502 | 509 | |
503 | 510 | /** |
Index: branches/REL1_15/phase3/RELEASE-NOTES |
— | — | @@ -7,6 +7,7 @@ |
8 | 8 | |
9 | 9 | * (bug 20239) MediaWiki:Imagemaxsize does not contain anymore a <br /> tag which |
10 | 10 | was displayed to the user |
| 11 | +* (bug 21150) SQLite no longer raise an error when deleting files |
11 | 12 | |
12 | 13 | === Changes since 1.15.1 === |
13 | 14 | |