Skip to content

Commit

Permalink
Dev: bumped PHP version requirement to 5.5.9
Browse files Browse the repository at this point in the history
  • Loading branch information
lacrioque committed Jul 19, 2017
1 parent 33feda5 commit b183d05
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion application/controllers/InstallerController.php
Expand Up @@ -874,7 +874,7 @@ function check_DirectoryWriteable($directory, &$data, $base, $keyError, $bRecurs
}

// version check
if (version_compare(PHP_VERSION, '5.3.0', '<'))
if (version_compare(PHP_VERSION, '5.5.9', '<'))
$bProceed = !$aData['verror'] = true;

if (convertPHPSizeToBytes(ini_get('memory_limit'))/1024/1024<128 && ini_get('memory_limit')!=-1)
Expand Down
2 changes: 1 addition & 1 deletion application/views/installer/precheck_view.php
Expand Up @@ -54,7 +54,7 @@ function dirReport($dir, $write)
<tbody>
<tr>
<td><?php eT("PHP version"); ?></td>
<td>5.3.3+</td>
<td>5.5.9+</td>
<td><?php if (isset($verror) && $verror) { ?><span style='font-weight:bold; color: red'><?php eT("Outdated"); ?>: <?php echo $phpVersion; ?></span>
<?php } else { ?><?php echo $phpVersion ; ?> <?php } ?></td>
</tr>
Expand Down

0 comments on commit b183d05

Please sign in to comment.