From 12d5e48b958447b159258eb9564995e73c86b44c 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 --- src/Install/Actions/IndexAction.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Install/Actions/IndexAction.php b/src/Install/Actions/IndexAction.php index 9ba012a75..3bed18d22 100644 --- a/src/Install/Actions/IndexAction.php +++ b/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.' ]; }