commit ab2b5974e372af3ac3bf5355bc0e3abf0df9587d
parent c4bde2a692a45d6df00de0cf55e42f9c7abf08f2
Author: markseu <mark2011@mayberg.se>
Date: Thu, 11 Apr 2024 11:44:48 +0200
Updated installation message
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/system/extensions/core.php b/system/extensions/core.php
@@ -28,7 +28,7 @@ class YellowCore {
public function command($line = "") {
$statusCode = $this->processCoreUpdate();
if ($statusCode==303) {
- echo "Flux capacitor has reached 1.21 gigawatts. Please run command again.\n";
+ echo "Yellow flux capacitor has reached 1.21 gigawatts. Please run command again.\n";
}
return $statusCode<400 ? 0 : 1;
}
diff --git a/system/workers/update.php b/system/workers/update.php
@@ -204,7 +204,7 @@ class YellowUpdate {
$this->updateEventPending();
$statusCode = $this->updateExtensionPending();
if ($statusCode==303) {
- echo "Detected ZIP file".($this->extensions!=1 ? "s" : "");
+ echo "Yellow detected ZIP file".($this->extensions!=1 ? "s" : "");
echo ", $this->extensions extension".($this->extensions!=1 ? "s" : "")." installed. Please run command again.\n";
}
return $statusCode;