Add validation to PHP version 5.1.x

This commit is contained in:
Julio Cesar Laura
2012-10-17 14:51:19 -04:00
parent a065bacbfb
commit b1bee4dffe

View File

@@ -132,7 +132,7 @@ class Installer extends Controller
$info->memory = new stdclass();
$info->php->version = phpversion();
$info->php->result = $phpVerNum > 5.1 ? true : false;
$info->php->result = $phpVerNum >= 5.1 ? true : false;
// MYSQL info and verification
$info->mysql->result = false;