From bb7d51440c4e140fadd80c394011032a6cd3cfa3 Mon Sep 17 00:00:00 2001 From: Toby Zerner Date: Sat, 29 Aug 2015 14:44:55 +0930 Subject: [PATCH] Add helpful hint on how to upgrade PHP --- framework/core/src/Install/Actions/IndexAction.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/core/src/Install/Actions/IndexAction.php b/framework/core/src/Install/Actions/IndexAction.php index 9ba012a75..3bed18d22 100644 --- a/framework/core/src/Install/Actions/IndexAction.php +++ b/framework/core/src/Install/Actions/IndexAction.php @@ -45,7 +45,7 @@ class IndexAction extends HtmlAction if (version_compare(PHP_VERSION, '5.5.0', '<')) { $errors[] = [ 'message' => 'PHP 5.5+ is required.', - 'detail' => 'You are running version '.PHP_VERSION.'.' + 'detail' => 'You are running version '.PHP_VERSION.'. Talk to your hosting provider about upgrading to the latest PHP version.' ]; }