summaryrefslogtreecommitdiffstats
path: root/lib/private/legacy/util.php
diff options
context:
space:
mode:
authorRealRancor <fisch.666@gmx.de>2016-10-15 13:22:25 +0200
committerMorris Jobke <hey@morrisjobke.de>2016-10-24 16:12:17 +0200
commit14b1d946a8fcd044ab65f784fe40ebf7f3954855 (patch)
tree70fcae2c3e9f122d0a9f533701beb2f1a3f5814e /lib/private/legacy/util.php
parent729c06548fbfe035c14dae68c4b09494b292d217 (diff)
downloadnextcloud-server-14b1d946a8fcd044ab65f784fe40ebf7f3954855.tar.gz
nextcloud-server-14b1d946a8fcd044ab65f784fe40ebf7f3954855.zip
Remove checks whether OC is running on Windows pt. 2
Diffstat (limited to 'lib/private/legacy/util.php')
-rw-r--r--lib/private/legacy/util.php18
1 files changed, 0 insertions, 18 deletions
diff --git a/lib/private/legacy/util.php b/lib/private/legacy/util.php
index b6c3b375396..42fd0ba7db3 100644
--- a/lib/private/legacy/util.php
+++ b/lib/private/legacy/util.php
@@ -667,15 +667,6 @@ class OC_Util {
$webServerRestart = true;
}
- // Check if server running on Windows platform
- if(OC_Util::runningOnWindows()) {
- $errors[] = [
- 'error' => $l->t('Microsoft Windows Platform is not supported'),
- 'hint' => $l->t('Running Nextcloud Server on the Microsoft Windows platform is not supported. We suggest you ' .
- 'use a Linux server in a virtual machine if you have no option for migrating the server itself.')
- ];
- }
-
// Check if config folder is writable.
if(!OC_Helper::isReadOnlyConfigEnabled()) {
if (!is_writable(OC::$configDir) or !is_readable(OC::$configDir)) {
@@ -1268,15 +1259,6 @@ class OC_Util {
}
/**
- * Checks whether the server is running on Windows
- *
- * @return bool true if running on Windows, false otherwise
- */
- public static function runningOnWindows() {
- return (substr(PHP_OS, 0, 3) === "WIN");
- }
-
- /**
* Checks whether the server is running on Mac OS X
*
* @return bool true if running on Mac OS X, false otherwise