diff options
author | Frank Karlitschek <frank@owncloud.org> | 2015-01-18 18:50:46 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-01-20 13:37:50 +0100 |
commit | 828d7d6cf5e9cc7df89527243268a14ad7d4d0b9 (patch) | |
tree | 534c8bc77c4f479f14abc8e7486cc97d88249a44 | |
parent | 870bc429b26460734da900ccbab1b760fb9dcb08 (diff) | |
download | nextcloud-server-828d7d6cf5e9cc7df89527243268a14ad7d4d0b9.tar.gz nextcloud-server-828d7d6cf5e9cc7df89527243268a14ad7d4d0b9.zip |
add a Windows warning
-rw-r--r-- | settings/admin.php | 2 | ||||
-rw-r--r-- | settings/templates/admin.php | 21 |
2 files changed, 18 insertions, 5 deletions
diff --git a/settings/admin.php b/settings/admin.php index 01cab1fa1f4..bb20c665f56 100644 --- a/settings/admin.php +++ b/settings/admin.php @@ -81,6 +81,8 @@ $template->assign('onlyShareWithGroupMembers', \OC\Share\Share::shareWithGroupMe $databaseOverload = (strpos(\OCP\Config::getSystemValue('dbtype'), 'sqlite') !== false); $template->assign('databaseOverload', $databaseOverload); +// warn if Windows is used +$template->assign('WindowsWarning', OC_Util::runningOnWindows()); // add hardcoded forms from the template $forms = OC_App::getForms('admin'); diff --git a/settings/templates/admin.php b/settings/templates/admin.php index 41b60b64428..65c6359e509 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -10,13 +10,10 @@ */ style('settings', 'settings'); -script('settings', 'settings'); -script( "settings", "admin" ); -script( "settings", "log" ); -script( 'core', 'multiselect' ); +script('settings', [ 'settings', 'admin', 'log'] ); +script('core', ['multiselect', 'setupchecks']); vendor_script('select2/select2'); vendor_style('select2/select2'); -script('core', 'setupchecks'); $levels = array('Debug', 'Info', 'Warning', 'Error', 'Fatal'); $levelLabels = array( @@ -125,6 +122,20 @@ if ($_['databaseOverload']) { <?php } +// Windows Warning +if ($_['WindowsWarning']) { + ?> +<div class="section"> + <h2><?php p($l->t('Microsoft Windows Platform'));?></h2> + + <p class="securitywarning"> + <?php p($l->t('Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience.')); ?> + </p> + +</div> +<?php +} + // if module fileinfo available? if (!$_['has_fileinfo']) { ?> |