Fix spaces from r69814
authorSam Reed <reedy@users.mediawiki.org>
Fri, 23 Jul 2010 20:58:09 +0000 (20:58 +0000)
committerSam Reed <reedy@users.mediawiki.org>
Fri, 23 Jul 2010 20:58:09 +0000 (20:58 +0000)
Grrrr

includes/db/DatabasePostgres.php

index 97e7f20..9086198 100644 (file)
@@ -564,9 +564,9 @@ class DatabasePostgres extends DatabaseBase {
                        $SQL = "SELECT 1 FROM pg_catalog.pg_class c JOIN pg_catalog.pg_namespace n ON (n.oid = c.relnamespace) ".
                                "WHERE relname = 'pg_pltemplate' AND nspname='pg_catalog'";
                        $rows = $this->numRows($this->doQuery($SQL));
-            global $wgDBname;
+                       global $wgDBname;
                        if ($rows >= 1) {
-                       $olde = error_reporting(0);
+                               $olde = error_reporting(0);
                                error_reporting($olde - E_WARNING);
                                $result = $this->doQuery("CREATE LANGUAGE plpgsql");
                                error_reporting($olde);