Index: trunk/phase3/includes/specials/SpecialPreferences.php |
— | — | @@ -45,7 +45,7 @@ |
46 | 46 | |
47 | 47 | $wgOut->addScriptFile( 'prefs.js' ); |
48 | 48 | |
49 | | - if ( $wgRequest->getCheck( 'success' ) ) { |
| 49 | + if ( $wgRequest->getCheck( 'success' ) && $wgRequest->wasPosted()) { |
50 | 50 | $wgOut->wrapWikiMsg( |
51 | 51 | "<div class=\"successbox\"><strong>\n$1\n</strong></div><div id=\"mw-pref-clear\"></div>", |
52 | 52 | 'savedprefs' |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -278,6 +278,8 @@ |
279 | 279 | instead of showing an error page |
280 | 280 | * (bug 24425) Use Database::replace instead of delete/insert in SqlBagOStuff::set |
281 | 281 | to avoid query errors about duplicate keynames. |
| 282 | +* (bug 24700) Update dialog shown when clicking on the special page tab after |
| 283 | + saving preferences |
282 | 284 | |
283 | 285 | === API changes in 1.17 === |
284 | 286 | * (bug 22738) Allow filtering by action type on query=logevent. |