diff options
author | Frank Karlitschek <frank@owncloud.org> | 2013-12-03 14:30:32 +0100 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2013-12-04 10:25:22 +0100 |
commit | 61296ed7bbf638e8285f29fa65fc4a0ad6c2529a (patch) | |
tree | 15d24930f37456cacf93a97c455b63e47ab39509 /settings/templates | |
parent | b83e891456489475953438cc2ecad6bed2d5d49e (diff) | |
download | nextcloud-server-61296ed7bbf638e8285f29fa65fc4a0ad6c2529a.tar.gz nextcloud-server-61296ed7bbf638e8285f29fa65fc4a0ad6c2529a.zip |
lower required php version to 5.3.3
Diffstat (limited to 'settings/templates')
-rw-r--r-- | settings/templates/admin.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/settings/templates/admin.php b/settings/templates/admin.php index 523bbd66248..0eabffb9316 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -72,6 +72,20 @@ if (!$_['has_fileinfo']) { <?php } +// is PHP at least at 5.3.8? +if ($_['old_php']) { + ?> +<fieldset class="personalblock"> + <h2><?php p($l->t('Your PHP version is outdated'));?></h2> + + <span class="connectionwarning"> + <?php p($l->t('Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly.')); ?> + </span> + +</fieldset> +<?php +} + // is locale working ? if (!$_['isLocaleWorking']) { ?> |