Index: branches/5.0.x/core/install/step_templates/choose_modules.tpl =================================================================== diff -u -r12435 -r12551 --- branches/5.0.x/core/install/step_templates/choose_modules.tpl (.../choose_modules.tpl) (revision 12435) +++ branches/5.0.x/core/install/step_templates/choose_modules.tpl (.../choose_modules.tpl) (revision 12551) @@ -18,7 +18,7 @@ Please select Modules you would like to install:


'; + echo '

 Please select Modules you would like to install:

'; $first_time = $this->GetVar('step') != $this->currentStep; // data from this step was not submitted yet $selected = $this->GetVar('modules'); if (!$selected) { Index: branches/5.0.x/core/install/step_templates/security.tpl =================================================================== diff -u -r12457 -r12551 --- branches/5.0.x/core/install/step_templates/security.tpl (.../security.tpl) (revision 12457) +++ branches/5.0.x/core/install/step_templates/security.tpl (.../security.tpl) (revision 12551) @@ -81,8 +81,7 @@ $ini_vars = Array ('register_globals' => false, 'open_basedir' => true, 'allow_url_fopen' => false); foreach ($ini_vars as $var_name => $var_value) { $current_value = ini_get($var_name); - - if (is_numeric($current_value)) { + if (!is_numeric($current_value)) { $formatted_value = $current_value ? 'On' : 'Off'; } else {