commit 6ab44885efe2243ab42de893d59ebfadde2fe8e2
parent e4c7244d07f94a5548806a4658c7b0dca76e2736
Author: markseu <mark2011@mayberg.se>
Date: Wed, 15 Mar 2017 13:21:57 +0100
Datenstrom Yellow requires PHP 5.4 or higher
Diffstat:
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/yellow.php b/yellow.php
@@ -1,8 +1,9 @@
<?php
-// Yellow is for people who make websites. http://datenstrom.se/yellow
+// Yellow is for people who make websites. http://datenstrom.se/yellow/
+// Copyright (c) 2013-2017 Datenstrom, https://datenstrom.se
// This file may be used and distributed under the terms of the public license.
-version_compare(PHP_VERSION, "5.3", '>=') || die("Yellow requires PHP 5.3 or higher!");
+version_compare(PHP_VERSION, "5.4", ">=") || die("Datenstrom Yellow requires PHP 5.4 or higher!");
require_once("system/plugins/core.php");
if(PHP_SAPI!="cli")
@@ -16,4 +17,4 @@ if(PHP_SAPI!="cli")
$statusCode = $yellow->command($argv[1], $argv[2], $argv[3], $argv[4], $argv[5], $argv[6], $argv[7]);
exit($statusCode<400 ? 0 : 1);
}
-?>
-\ No newline at end of file
+?>