Skip to content
Snippets Groups Projects
Commit 2635c663 authored by Jaime Perez's avatar Jaime Perez
Browse files

Update PHP version required in frontpage_config.php.

parent 7598890d
No related branches found
No related tags found
No related merge requests found
......@@ -98,8 +98,8 @@ if (SimpleSAML_Module::isModuleEnabled('radius')) {
$funcmatrix = array();
$funcmatrix[] = array(
'required' => 'required',
'descr' => 'PHP Version >= 5.2. You run: ' . phpversion(),
'enabled' => version_compare(phpversion(), '5.2', '>='));
'descr' => 'PHP Version >= 5.3. You run: ' . phpversion(),
'enabled' => version_compare(phpversion(), '5.3', '>='));
foreach ($functionchecks AS $func => $descr) {
$funcmatrix[] = array('descr' => $descr[1], 'required' => $descr[0], 'enabled' => function_exists($func));
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment