diff options
Diffstat (limited to 'settings/templates/admin.php')
-rw-r--r-- | settings/templates/admin.php | 21 |
1 files changed, 16 insertions, 5 deletions
diff --git a/settings/templates/admin.php b/settings/templates/admin.php index a739e517ede..1f7eacd746b 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -143,9 +143,24 @@ if ($_['WindowsWarning']) { </p> </div> + <?php } +// APCU Warning if outdated +if ($_['ApcuOutdatedWarning']) { + ?> + <div class="section"> + <h2><?php p($l->t('APCu below version 4.0.6 installed'));?></h2> + + <p class="securitywarning"> + <?php p($l->t('APCu below version 4.0.6 is installed, for stability and performance reasons we recommend to update to a newer APCu version.')); ?> + </p> + + </div> + +<?php +} // if module fileinfo available? if (!$_['has_fileinfo']) { ?> @@ -525,11 +540,7 @@ if ($_['suggestedOverwriteCliUrl']) { <div class="section"> <h2><?php p($l->t('Version'));?></h2> <strong><?php p($theme->getTitle()); ?></strong> <?php p(OC_Util::getHumanVersion()) ?> -<?php if (OC_Util::getEditionString() === ''): ?> - <p> - <?php print_unescaped($l->t('Developed by the <a href="http://ownCloud.org/contact" target="_blank">ownCloud community</a>, the <a href="https://github.com/owncloud" target="_blank">source code</a> is licensed under the <a href="http://www.gnu.org/licenses/agpl-3.0.html" target="_blank"><abbr title="Affero General Public License">AGPL</abbr></a>.')); ?> - </p> -<?php endif; ?> + <?php include('settings.development.notice.php'); ?> </div> <div class="section credits-footer"> |