Index: trunk/phase3/includes/EditPage.php |
— | — | @@ -2046,14 +2046,14 @@ |
2047 | 2047 | * they have attempted to edit a nonexistent section. |
2048 | 2048 | */ |
2049 | 2049 | function noSuchSectionPage() { |
2050 | | - global $wgOut, $wgTitle; |
| 2050 | + global $wgOut; |
2051 | 2051 | |
2052 | 2052 | $wgOut->setPageTitle( wfMsg( 'nosuchsectiontitle' ) ); |
2053 | 2053 | $wgOut->setRobotPolicy( 'noindex,nofollow' ); |
2054 | 2054 | $wgOut->setArticleRelated( false ); |
2055 | 2055 | |
2056 | 2056 | $wgOut->addWikiMsg( 'nosuchsectiontext', $this->section ); |
2057 | | - $wgOut->returnToMain( false, $wgTitle ); |
| 2057 | + $wgOut->returnToMain( false, $this->mTitle ); |
2058 | 2058 | } |
2059 | 2059 | |
2060 | 2060 | /** |