aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Admin.php
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-05-23 21:20:40 -0700
committerzotlabs <mike@macgirvin.com>2017-05-23 21:20:40 -0700
commit3a00140797fa0d557db2434402ce20258b4ce570 (patch)
treeaa888f90fff49b60760362c0f4235dac17a8818c /Zotlabs/Module/Admin.php
parentbf580fcc0651663031d74072ee17a8f6becb49fc (diff)
downloadvolse-hubzilla-3a00140797fa0d557db2434402ce20258b4ce570.tar.gz
volse-hubzilla-3a00140797fa0d557db2434402ce20258b4ce570.tar.bz2
volse-hubzilla-3a00140797fa0d557db2434402ce20258b4ce570.zip
remove php version checks for older ( < 5.4) code incompatibilities
Diffstat (limited to 'Zotlabs/Module/Admin.php')
-rw-r--r--Zotlabs/Module/Admin.php6
1 files changed, 0 insertions, 6 deletions
diff --git a/Zotlabs/Module/Admin.php b/Zotlabs/Module/Admin.php
index 536d85dde..65ce363c0 100644
--- a/Zotlabs/Module/Admin.php
+++ b/Zotlabs/Module/Admin.php
@@ -120,12 +120,6 @@ class Admin extends \Zotlabs\Web\Controller {
// Could be extended to provide also other alerts to the admin
$alertmsg = '';
- // annoy admin about upcoming unsupported PHP version
- if (version_compare(PHP_VERSION, '5.4', '<')) {
- $alertmsg = 'Your PHP version ' . PHP_VERSION . ' will not be supported with the next major release of $Projectname. You are strongly urged to upgrade to a current version.'
- . '<br>PHP 5.3 has reached its <a href="http://php.net/eol.php" class="alert-link">End of Life (EOL)</a> in August 2014.'
- . ' A list about current PHP versions can be found <a href="http://php.net/supported-versions.php" class="alert-link">here</a>.';
- }
$vmaster = get_repository_version('master');
$vdev = get_repository_version('dev');