From bd17dd0f7d5245d123a4bee8df2e07f9bea9c632 Mon Sep 17 00:00:00 2001 From: Tim Otten Date: Thu, 6 Jun 2019 04:39:43 -0700 Subject: [PATCH] install/index.php - Fix misleading install text During GUI install, there's a health-check based on the PHP version. Now that PHP 7 is required, this message *always* talks about PHP 7.x. But it's presented under a bucket labeled "PHP5". --- install/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/index.php b/install/index.php index 6eaf8a5030..9d86c115e1 100644 --- a/install/index.php +++ b/install/index.php @@ -623,7 +623,7 @@ class InstallRequirements { $this->requirePHPVersion(array( ts("PHP Configuration"), - ts("PHP5 installed"), + ts("PHP7 installed"), )); // Check that we can identify the root folder successfully -- 2.25.1