1
0
mirror of https://github.com/monstra-cms/monstra.git synced 2025-07-31 02:10:37 +02:00

Monstra requires PHP 5.2.3 or greater

This commit is contained in:
Awilum
2013-03-16 13:29:33 +02:00
parent 3936d266e7
commit 702efc6a11

View File

@@ -10,10 +10,10 @@
error_reporting(-1);
/**
* Monstra requires PHP 5.2.0 or greater
* Monstra requires PHP 5.2.3 or greater
*/
if (version_compare(PHP_VERSION, "5.2.0", "<")) {
exit("Monstra requires PHP 5.2.0 or greater.");
if (version_compare(PHP_VERSION, "5.2.3", "<")) {
exit("Monstra requires PHP 5.2.3 or greater.");
}
/**