From 8bdd81c815df7086c62ad46290f2a43835f3afbb Mon Sep 17 00:00:00 2001 From: bgigon Date: Fri, 23 Jul 2004 15:43:06 +0000 Subject: [PATCH] Fix display bug (again ;) --- setup/check_install.php | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/setup/check_install.php b/setup/check_install.php index ea32113507..c29457adbb 100644 --- a/setup/check_install.php +++ b/setup/check_install.php @@ -382,24 +382,23 @@ { if (isset($args['warning'])) { - echo $warning_icon.$msg.$args['warning']."\n"; + echo $warning_icon.$msg.$args['warning']."
\n"; } if (isset($args['error'])) { - echo $error_icon.$msg.$args['error']."\n"; + echo $error_icon.$msg.$args['error']."
\n"; } if (isset($args['safe_mode']) && $safe_mode || @$args['change']) { if (!isset($args['warning']) && !isset($args['error'])) { - echo $error_icon.$msg; + echo $error_icon.$msg."
"; } - echo "
"; + echo "\n"; echo '*** '.lang('Please make the following change in your php.ini').' ('.get_php_ini().'): '.(@$args['safe_mode']?$args['safe_mode']:$args['change'])."
\n"; echo '*** '.lang('AND reload your webserver, so the above changes take effect !!!')."
\n"; } } - echo "\n"; return $result; }