Minor change.

This commit is contained in:
Lars Jung 2016-05-27 22:42:11 +02:00
parent 10d6d2c3c1
commit 793bfce202

View file

@ -5,8 +5,7 @@ define('MIN_PHP_VERSION', '5.5.0');
if (!function_exists('version_compare') || version_compare(PHP_VERSION, MIN_PHP_VERSION, '<')) {
header('Content-type: text/plain;charset=utf-8');
echo '[err] h5ai requires PHP ' . MIN_PHP_VERSION . ' or later, but found PHP ' . PHP_VERSION;
exit;
exit('[ERR] h5ai requires PHP ' . MIN_PHP_VERSION . ' or later, but found PHP ' . PHP_VERSION);
}
require_once __DIR__ . '/../private/php/class-bootstrap.php';