Index: branches/REL1_17/phase3/includes/db/Database.php |
— | — | @@ -1628,7 +1628,7 @@ |
1629 | 1629 | if ( !$alias || $alias == $name ) { |
1630 | 1630 | return $this->tableName( $name ); |
1631 | 1631 | } else { |
1632 | | - return $this->tableName( $name ) . ' ' . $this->addQuotes( $alias ); |
| 1632 | + return $this->tableName( $name ) . ' ' . $this->addIdentifierQuotes( $alias ); |
1633 | 1633 | } |
1634 | 1634 | } |
1635 | 1635 | |