From: Jens Frank Date: Tue, 28 Dec 2004 01:42:47 +0000 (+0000) Subject: Must be OR to combine the different namespaces, not AND X-Git-Tag: 1.5.0alpha1~1024 X-Git-Url: http://git.cyclocoop.org/clavettes/images/siteon3.jpg?a=commitdiff_plain;h=6f0d01ba1474e3c7c5cc58eb2f00241a796eb649;p=lhc%2Fweb%2Fwiklou.git Must be OR to combine the different namespaces, not AND --- diff --git a/maintenance/updaters.inc b/maintenance/updaters.inc index dfd9d3578b..f175af43ad 100644 --- a/maintenance/updaters.inc +++ b/maintenance/updaters.inc @@ -278,7 +278,7 @@ function do_schema_restructuring() { if ( $firstCond ) { $firstCond = false; } else { - $sql .= ' AND '; + $sql .= ' OR '; } $sql .= "( cur_namespace = {$ns} AND cur_title in ("; $first = true;