Fixup fixme on r81030, which should actually have been a fixme on r81657
authorSam Reed <reedy@users.mediawiki.org>
Wed, 9 Feb 2011 18:57:25 +0000 (18:57 +0000)
committerSam Reed <reedy@users.mediawiki.org>
Wed, 9 Feb 2011 18:57:25 +0000 (18:57 +0000)
includes/db/Database.php

index 43342c7..6ea6770 100644 (file)
@@ -1625,7 +1625,7 @@ abstract class DatabaseBase implements DatabaseType {
                if ( !$alias || $alias == $name ) {
                        return $this->tableName( $name );
                } else {
-                       return $this->tableName( $name ) . ' ' . $this->addQuotes( $alias );
+                       return $this->tableName( $name ) . ' ' . $this->addIdentifierQuotes( $alias );
                }
        }