Index: trunk/phase3/includes/SpecialPage.php |
— | — | @@ -799,7 +799,7 @@ |
800 | 800 | class SpecialMypage extends UnlistedSpecialPage { |
801 | 801 | function __construct() { |
802 | 802 | parent::__construct( 'Mypage' ); |
803 | | - $this->mAllowedRedirectParams = array( 'action' , 'preload' , 'editintro' ); |
| 803 | + $this->mAllowedRedirectParams = array( 'action' , 'preload' , 'editintro', 'section' ); |
804 | 804 | } |
805 | 805 | |
806 | 806 | function getRedirect( $subpage ) { |
— | — | @@ -819,7 +819,7 @@ |
820 | 820 | class SpecialMytalk extends UnlistedSpecialPage { |
821 | 821 | function __construct() { |
822 | 822 | parent::__construct( 'Mytalk' ); |
823 | | - $this->mAllowedRedirectParams = array( 'action' , 'preload' , 'editintro' ); |
| 823 | + $this->mAllowedRedirectParams = array( 'action' , 'preload' , 'editintro', 'section' ); |
824 | 824 | } |
825 | 825 | |
826 | 826 | function getRedirect( $subpage ) { |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -76,8 +76,8 @@ |
77 | 77 | * BeforeWatchlist hook added for filtering or replacing watchlist. |
78 | 78 | * SkinTemplateTabAction hook added for altering the properties of tab links. |
79 | 79 | * OutputPage::getRedirect public method added. |
80 | | -* (bug 11848) Allow URL parameters 'editintro' and 'preload' in Special:Mypage |
81 | | - and Special:Mytalk |
| 80 | +* (bug 11848, 12506) Allow URL parameters 'section', 'editintro' and 'preload' |
| 81 | + in Special:Mypage and Special:Mytalk |
82 | 82 | * Add ot=raw to Special:Allmessages |
83 | 83 | * Support for Hebrew calendar |
84 | 84 | * Support for Hebrew numerals in dates and times |