From 057920b16596267248e2fdcbb80501c332ab7079 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Wed, 30 Jan 2013 23:05:44 +0100 Subject: [PATCH] Still load js files in maintance mode --- lib/base.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/lib/base.php b/lib/base.php index 24002d19c1..2d44106271 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);