Skip to content

Commit

Permalink
Merge pull request #495 from saeideng/patch-1
Browse files Browse the repository at this point in the history
dump php
  • Loading branch information
antograssiot authored Feb 19, 2017
2 parents e6b6964 + 3e9d343 commit 3e3d939
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Template/Pages/home.ctp
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,10 @@ $cakeDescription = 'CakePHP: the rapid development PHP framework';
<div class="columns large-6">
<h4>Environment</h4>
<ul>
<?php if (version_compare(PHP_VERSION, '5.5.9', '>=')): ?>
<li class="bullet success">Your version of PHP is 5.5.9 or higher (detected <?= PHP_VERSION ?>).</li>
<?php if (version_compare(PHP_VERSION, '5.6.0', '>=')): ?>
<li class="bullet success">Your version of PHP is 5.6.0 or higher (detected <?= PHP_VERSION ?>).</li>
<?php else: ?>
<li class="bullet problem">Your version of PHP is too low. You need PHP 5.5.9 or higher to use CakePHP (detected <?= PHP_VERSION ?>).</li>
<li class="bullet problem">Your version of PHP is too low. You need PHP 5.6.0 or higher to use CakePHP (detected <?= PHP_VERSION ?>).</li>
<?php endif; ?>

<?php if (extension_loaded('mbstring')): ?>
Expand Down

0 comments on commit 3e3d939

Please sign in to comment.