Index: branches/RC/core/install/step_templates/upgrade_modules.tpl =================================================================== diff -u -N -r8929 -r9988 --- branches/RC/core/install/step_templates/upgrade_modules.tpl (.../upgrade_modules.tpl) (revision 8929) +++ branches/RC/core/install/step_templates/upgrade_modules.tpl (.../upgrade_modules.tpl) (revision 9988) @@ -5,7 +5,7 @@ - +
@@ -20,7 +20,9 @@ if ($this->Application->isDebugMode()) { $module_title .= ' [from: '.$module_params['FromVersion'].']'; } - echo sprintf($module_tpl, $module_name, $module_title); + $selected = $this->GetVar('modules'); + $checked = in_array($module_name, $selected) ? 'checked="checked"' : ''; + echo sprintf($module_tpl, $module_name, $module_title, $checked); } ?>