Index: trunk/extensions/Translate/specials/SpecialManageGroups.php |
— | — | @@ -277,8 +277,9 @@ |
278 | 278 | foreach ( $actions as $action ) { |
279 | 279 | $label = wfMsg( "translate-manage-action-$action" ); |
280 | 280 | $name = MessageWebImporter::escapeNameForPHP( "action-$type-$key" ); |
| 281 | + $selected = $wgRequest->getVal( $name, $defaction ); |
281 | 282 | $id = Sanitizer::escapeId( "action-$key-$action" ); |
282 | | - $act[] = Xml::radioLabel( $label, $name, $action, $id, $action === $defaction ); |
| 283 | + $act[] = Xml::radioLabel( $label, $name, $action, $id, $action === $selected ); |
283 | 284 | } |
284 | 285 | } |
285 | 286 | |