From 6cbdf45a7c41c4494b76f304d0a768cacc9f7aa4 Mon Sep 17 00:00:00 2001
From: aPollO2k <5796295+aPollO2k@users.noreply.github.com>
Date: Mon, 16 Jan 2023 21:32:56 +0100
Subject: [PATCH] Typo fixed in update_2.x.inc.php (#1082)
PHO_EOL => PHP_EOL
---
install/updates/froxlor/update_2.x.inc.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/install/updates/froxlor/update_2.x.inc.php b/install/updates/froxlor/update_2.x.inc.php
index 2523069a..6635ea0a 100644
--- a/install/updates/froxlor/update_2.x.inc.php
+++ b/install/updates/froxlor/update_2.x.inc.php
@@ -281,7 +281,7 @@ EOF;
file_put_contents($complete_filedir . '/froxlor_master_cronjob.php', $compCron);
Update::lastStepStatus(0);
} else {
- $cron_run_cmd = 'chmod +x ' . FileDir::makeCorrectFile(Froxlor::getInstallDir() . '/bin/froxlor-cli') . PHO_EOL;
+ $cron_run_cmd = 'chmod +x ' . FileDir::makeCorrectFile(Froxlor::getInstallDir() . '/bin/froxlor-cli') . PHP_EOL;
$cron_run_cmd .= FileDir::makeCorrectFile(Froxlor::getInstallDir() . '/bin/froxlor-cli') . ' froxlor:cron -r 99';
Update::lastStepStatus(1, 'manual commands needed', 'Please run the following commands manually:
' . $cron_run_cmd . ''); }