Break long line
authorAaron Schulz <aaron@users.mediawiki.org>
Fri, 17 Oct 2008 01:25:31 +0000 (01:25 +0000)
committerAaron Schulz <aaron@users.mediawiki.org>
Fri, 17 Oct 2008 01:25:31 +0000 (01:25 +0000)
includes/specials/SpecialListredirects.php

index 808aab1..9555bd1 100644 (file)
@@ -22,7 +22,8 @@ class ListredirectsPage extends QueryPage {
        function getSQL() {
                $dbr = wfGetDB( DB_SLAVE );
                $page = $dbr->tableName( 'page' );
-               $sql = "SELECT 'Listredirects' AS type, page_title AS title, page_namespace AS namespace, 0 AS value FROM $page WHERE page_is_redirect = 1";
+               $sql = "SELECT 'Listredirects' AS type, page_title AS title, page_namespace AS namespace, 
+                       0 AS value FROM $page WHERE page_is_redirect = 1";
                return( $sql );
        }