* Fix Special:BrokenRedirects on MySQL 5.0
authorBrion Vibber <brion@users.mediawiki.org>
Wed, 26 Oct 2005 21:29:34 +0000 (21:29 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Wed, 26 Oct 2005 21:29:34 +0000 (21:29 +0000)
RELEASE-NOTES
includes/SpecialBrokenRedirects.php

index 4712099..a2a7f8e 100644 (file)
@@ -175,6 +175,7 @@ fully support the editing toolbar, but was found to be too confusing.
 * (bug 3798) DoubleRedirects no longer has hard coded arrows
 * (bug 2324) image for redirects should be without text and oriented according to content language
 * (bug 3803) Fix links on Special:Wantedcategories with miser mode off
+* Fix Special:BrokenRedirects on MySQL 5.0
 
 
 === Caveats ===
index 604ad84..a78319f 100644 (file)
@@ -38,7 +38,7 @@ class BrokenRedirectsPage extends PageQueryPage {
                                p1.page_title     AS title,
                                pl_namespace,
                                pl_title
-                          FROM $pagelinks, $page AS p1
+                          FROM ($pagelinks, $page AS p1)
                      LEFT JOIN $page AS p2
                             ON pl_namespace=p2.page_namespace AND pl_title=p2.page_title
                          WHERE p1.page_is_redirect=1