aboutsummaryrefslogtreecommitdiffstats
path: root/settings
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2016-07-08 15:55:17 +0200
committerMorris Jobke <hey@morrisjobke.de>2016-07-08 15:55:17 +0200
commitc2d88a08b796ca19c8b5ec63bfd34ac32ead4208 (patch)
treef18e0ba4d05361456a6712378ccc0784620c1e9c /settings
parent48f9e4ed03f3148d62919a95496ee43164d3e707 (diff)
downloadnextcloud-server-c2d88a08b796ca19c8b5ec63bfd34ac32ead4208.tar.gz
nextcloud-server-c2d88a08b796ca19c8b5ec63bfd34ac32ead4208.zip
Remove unneeded checks if it runs on a Windows machine
* the setup check is still there
Diffstat (limited to 'settings')
-rw-r--r--settings/admin.php3
-rw-r--r--settings/templates/admin.php9
2 files changed, 0 insertions, 12 deletions
diff --git a/settings/admin.php b/settings/admin.php
index 3ae7455b2ea..81267ddef10 100644
--- a/settings/admin.php
+++ b/settings/admin.php
@@ -154,9 +154,6 @@ $template->assign('cronErrors', $appConfig->getValue('core', 'cronErrors'));
$path = getenv('PATH');
$template->assign('getenvServerNotWorking', empty($path));
-// warn if Windows is used
-$template->assign('WindowsWarning', OC_Util::runningOnWindows());
-
// warn if outdated version of a memcache module is used
$caches = [
'apcu' => ['name' => $l->t('APCu'), 'version' => '4.0.6'],
diff --git a/settings/templates/admin.php b/settings/templates/admin.php
index f41c0d3c101..93c9dca7153 100644
--- a/settings/templates/admin.php
+++ b/settings/templates/admin.php
@@ -106,15 +106,6 @@ if ($_['invalidTransactionIsolationLevel']) {
<?php
}
-// Windows Warning
-if ($_['WindowsWarning']) {
- ?>
- <li>
- <?php p($l->t('Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience.')); ?>
- </li>
-<?php
-}
-
// Warning if memcache is outdated
foreach ($_['OutdatedCacheWarning'] as $php_module => $data) {
?>