diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2016-07-11 13:16:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-11 13:16:03 +0200 |
commit | 0c1cf5f7eb15532901aa3b4f29a4e3ee5fa58467 (patch) | |
tree | 1503a3a06e94d9f36b1675a0b4f46284c0f83b23 /settings | |
parent | 34c0b9d2c02f787b46dd27af66ab2726d6024636 (diff) | |
parent | 6ea77abb38e4b85556ccde8801071f5f10a92ced (diff) | |
download | nextcloud-server-0c1cf5f7eb15532901aa3b4f29a4e3ee5fa58467.tar.gz nextcloud-server-0c1cf5f7eb15532901aa3b4f29a4e3ee5fa58467.zip |
Merge pull request #347 from nextcloud/drop-windows-foo
Remove unneeded checks if it runs on a Windows machine
Diffstat (limited to 'settings')
-rw-r--r-- | settings/admin.php | 3 | ||||
-rw-r--r-- | settings/templates/admin.php | 9 |
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) { ?> |