From 70d58b79cb8fdb84e263d923c51e4dff2c4f4388 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 24 Feb 2016 17:36:42 +0100 Subject: Wizard: display EOL date --- wizard/index.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'wizard') diff --git a/wizard/index.php b/wizard/index.php index e412553f..cf600f29 100644 --- a/wizard/index.php +++ b/wizard/index.php @@ -33,6 +33,12 @@ $phpvers = [ '5.5' => 'remi-php55', '5.4' => 'remi', ]; +$phpname = [ + '7.0' => '7.0 (active support until Dec 2017)', + '5.6' => '5.6 (active support until Dec 2016)', + '5.5' => '5.5 (security support until Jul 2016)', + '5.4' => '5.4 (no support since Sept 2015)', +]; $php = (isset($_POST['php']) && isset($phpvers[$_POST['php']]) ? $_POST['php'] : false); $os = (isset($_POST['os']) && isset($osvers[$_POST['os']]) ? $_POST['os'] : false); $type = (isset($_POST['type']) && isset($types[$_POST['type']]) ? $_POST['type'] : false); @@ -74,7 +80,7 @@ $type = (isset($_POST['type']) && isset($types[$_POST['type']]) ? $_POST['type'

-- cgit