summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/base.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/base.php b/lib/base.php
index 24002d19c1f..2d441062714 100644
--- a/lib/base.php
+++ b/lib/base.php
@@ -545,8 +545,11 @@ class OC {
require_once 'core/setup.php';
exit();
}
- self::checkMaintenanceMode();
- self::checkUpgrade();
+ $request = OC_Request::getPathInfo();
+ if(substr($request, -3) !== '.js'){// we need these files during the upgrade
+ self::checkMaintenanceMode();
+ self::checkUpgrade();
+ }
try {
OC::getRouter()->match(OC_Request::getPathInfo());
@@ -557,6 +560,7 @@ class OC {
OC_Response::setStatus(405);
return;
}
+
$app = OC::$REQUESTEDAPP;
$file = OC::$REQUESTEDFILE;
$param = array('app' => $app, 'file' => $file);