From 759e3794df1f2f349cdf898cb3b04477279f694e Mon Sep 17 00:00:00 2001 From: snipe Date: Tue, 4 Mar 2025 14:57:28 +0000 Subject: [PATCH] Small upgrader UI fixes Signed-off-by: snipe --- upgrade.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/upgrade.php b/upgrade.php index 9bd1e8ad1..e528fceb2 100644 --- a/upgrade.php +++ b/upgrade.php @@ -261,7 +261,7 @@ if ($env_bad !='') { if(!$skip_php_checks){ echo "\n\e[95m--------------------------------------------------------\n"; - echo "STEP 2: Checking PHP requirements: (Required PHP >=". $php_min_works. " - <".$php_max_wontwork.") \e[39m\n"; + echo "STEP 2: Checking PHP requirements: (Required PHP >=". $php_min_works. " - <".$php_max_wontwork.")\n"; echo "--------------------------------------------------------\e[39m\n\n"; if ((version_compare(phpversion(), $php_min_works, '>=')) && (version_compare(phpversion(), $php_max_wontwork, '<'))) { @@ -540,7 +540,7 @@ echo "--------------------------------------------------------\e[39m\n\n"; exec('php artisan down', $down_results, $return_code); echo '-- ' . implode("\n", $down_results) . "\n"; if ($return_code > 0) { - die("Something went wrong with downing your site. This can't be good. Please investigate the error. Aborting!n\n"); + die("Something went wrong with downing your site. This can't be good. Please investigate the error. Aborting!\n\n"); } unset($return_code);