From: Sam Reed Date: Wed, 9 Feb 2011 18:57:25 +0000 (+0000) Subject: Fixup fixme on r81030, which should actually have been a fixme on r81657 X-Git-Tag: 1.31.0-rc.0~32090 X-Git-Url: http://git.cyclocoop.org/%27.%28%24current%20%3E%202?a=commitdiff_plain;h=64d9ae91c1dbec442192084bac1053338883f592;p=lhc%2Fweb%2Fwiklou.git Fixup fixme on r81030, which should actually have been a fixme on r81657 --- diff --git a/includes/db/Database.php b/includes/db/Database.php index 43342c772d..6ea67709d4 100644 --- a/includes/db/Database.php +++ b/includes/db/Database.php @@ -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 ); } }