Index: trunk/phase3/CREDITS |
— | — | @@ -87,6 +87,7 @@ |
88 | 88 | * Andrew Dunbar |
89 | 89 | * Antonio Ospite |
90 | 90 | * Azliq7 |
| 91 | +* Bagariavivek |
91 | 92 | * Beau |
92 | 93 | * Bergi |
93 | 94 | * Borislav Manolov |
Index: trunk/phase3/includes/SpecialPage.php |
— | — | @@ -1082,7 +1082,7 @@ |
1083 | 1083 | class SpecialMypage extends RedirectSpecialPage { |
1084 | 1084 | function __construct() { |
1085 | 1085 | parent::__construct( 'Mypage' ); |
1086 | | - $this->mAllowedRedirectParams = array( 'action' , 'preload' , 'editintro', |
| 1086 | + $this->mAllowedRedirectParams = array( 'action', 'preload', 'preloadtitle', 'editintro', |
1087 | 1087 | 'section', 'oldid', 'diff', 'dir', |
1088 | 1088 | // Options for action=raw; missing ctype can break JS or CSS in some browsers |
1089 | 1089 | 'ctype', 'maxage', 'smaxage' ); |
— | — | @@ -1104,7 +1104,7 @@ |
1105 | 1105 | class SpecialMytalk extends RedirectSpecialPage { |
1106 | 1106 | function __construct() { |
1107 | 1107 | parent::__construct( 'Mytalk' ); |
1108 | | - $this->mAllowedRedirectParams = array( 'action' , 'preload' , 'editintro', |
| 1108 | + $this->mAllowedRedirectParams = array( 'action', 'preload', 'preloadtitle', 'editintro', |
1109 | 1109 | 'section', 'oldid', 'diff', 'dir' ); |
1110 | 1110 | } |
1111 | 1111 | |
Index: trunk/phase3/RELEASE-NOTES-1.20 |
— | — | @@ -39,6 +39,8 @@ |
40 | 40 | * (bug 34723) When editing a script page on a RTL wiki the textbox should be LTR. |
41 | 41 | * (bug 34762) Calling close() on a DatabaseBase object now clears the connection. |
42 | 42 | * (bug 34863) Show deletion log extract on non-existent file pages if applicable. |
| 43 | +* (bug 28019) Let ?preloadtitle=foo be passed on to target of |
| 44 | + Special:MyPage and Special:MyTalk |
43 | 45 | |
44 | 46 | === API changes in 1.20 === |
45 | 47 | * (bug 34316) Add ability to retrieve maximum upload size from MediaWiki API. |