Index: branches/5.0.x/core/install/install_toolkit.php =================================================================== diff -u -N -r12450 -r12457 --- branches/5.0.x/core/install/install_toolkit.php (.../install_toolkit.php) (revision 12450) +++ branches/5.0.x/core/install/install_toolkit.php (.../install_toolkit.php) (revision 12457) @@ -1,6 +1,6 @@ toolkit->checkWritePermissions(FULL_PATH . $check_path)) { + $path_check_status = $this->toolkit->checkWritePermissions(FULL_PATH . $check_path); + + if (is_bool($path_check_status) && $path_check_status) { $write_check = false; break; } Index: branches/5.0.x/core/install/step_templates/security.tpl =================================================================== diff -u -N -r12435 -r12457 --- branches/5.0.x/core/install/step_templates/security.tpl (.../security.tpl) (revision 12435) +++ branches/5.0.x/core/install/step_templates/security.tpl (.../security.tpl) (revision 12457) @@ -16,7 +16,8 @@ foreach ($check_paths as $check_path) { $path_secure = true; - if ($this->toolkit->checkWritePermissions(FULL_PATH . $check_path)) { + $path_check_status = $this->toolkit->checkWritePermissions(FULL_PATH . $check_path); + if (is_bool($path_check_status) && $path_check_status) { $write_check = $path_secure = false; } @@ -81,13 +82,20 @@ foreach ($ini_vars as $var_name => $var_value) { $current_value = ini_get($var_name); + if (is_numeric($current_value)) { + $formatted_value = $current_value ? 'On' : 'Off'; + } + else { + $formatted_value = "'" . $current_value . "'"; + } + if (($var_value && !$current_value) || (!$var_value && $current_value)) { $directive_check = false; - $message_text = 'set to On'; + $message_text = 'set to ' . $formatted_value . ''; $status_text = '[Vulnerable]'; } else { - $message_text = 'set to Off'; + $message_text = 'set to ' . $formatted_value . ''; $status_text = '[Secure]'; } Index: branches/5.0.x/core/install/step_templates/finish.tpl =================================================================== diff -u -N -r12435 -r12457 --- branches/5.0.x/core/install/step_templates/finish.tpl (.../finish.tpl) (revision 12435) +++ branches/5.0.x/core/install/step_templates/finish.tpl (.../finish.tpl) (revision 12457) @@ -17,7 +17,7 @@

6. Talk about In-Portal in your local community and In-Portal Community Group

-

7. Generate new ideas and discuss features in In-Portal Development Ghroup

+

7. Generate new ideas and discuss features in In-Portal Development Group

8. Design new Themes and Interfaces and communicate in In-Portal In-Portal Designs & Interfaces Group