Index: trunk/phase3/includes/ProtectionForm.php |
— | — | @@ -80,7 +80,7 @@ |
81 | 81 | if( $wgRequest->wasPosted() ) { |
82 | 82 | if( $this->save() ) { |
83 | 83 | global $wgOut; |
84 | | - $wgOut->redirect( $this->mTitle->getFullUrl() ); |
| 84 | + $wgOut->redirect( $this->mTitle->getFullUrl( 'redirect=no' ) ); |
85 | 85 | } |
86 | 86 | } else { |
87 | 87 | $this->show(); |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -197,6 +197,7 @@ |
198 | 198 | * Fixed installation on MyISAM or old InnoDB with charset=utf8, was giving |
199 | 199 | overlong key errors. |
200 | 200 | * Fixed zero-padding issues with MySQL 5 binary schema |
| 201 | +* (bug 10344) Don't follow a redirect after changing its protection level |
201 | 202 | |
202 | 203 | == API changes since 1.10 == |
203 | 204 | |