Index: trunk/phase3/includes/Database.php |
— | — | @@ -1582,7 +1582,7 @@ |
1583 | 1583 | global $wgSharedDB; |
1584 | 1584 | # Skip quoted literals |
1585 | 1585 | if ( $name{0} != '`' ) { |
1586 | | - if ( $this->mTablePrefix !== '' && strpos( '.', $name ) === false ) { |
| 1586 | + if ( $this->mTablePrefix !== '' && strpos( $name, '.' ) === false ) { |
1587 | 1587 | $name = "{$this->mTablePrefix}$name"; |
1588 | 1588 | } |
1589 | 1589 | if ( isset( $wgSharedDB ) && "{$this->mTablePrefix}user" == $name ) { |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -419,7 +419,9 @@ |
420 | 420 | * Double encoding broke Special:Newpages for some languages |
421 | 421 | * Adding a newline before the statistics footer, to prevent parsing problems |
422 | 422 | * Preventing the TOC from appearing in Special:Statistics |
| 423 | +* (bug 11082) Fix check for fully-specced table names in Database::tableName |
423 | 424 | |
| 425 | + |
424 | 426 | == API changes since 1.10 == |
425 | 427 | |
426 | 428 | Full API documentation is available at http://www.mediawiki.org/wiki/API |