Merge pull request #9213 from owncloud/upgrade-donotloadappsinremote

Prevent loading apps in remote when an upgrade is due
This commit is contained in:
Vincent Petry 2014-06-26 17:10:42 +02:00
commit 3d2fd7cd1a
1 changed files with 9 additions and 0 deletions

View File

@ -2,6 +2,15 @@
try {
require_once 'lib/base.php';
if (\OCP\Util::needUpgrade()) {
// since the behavior of apps or remotes are unpredictable during
// an upgrade, return a 503 directly
OC_Response::setStatus(OC_Response::STATUS_SERVICE_UNAVAILABLE);
OC_Template::printErrorPage('Service unavailable');
exit;
}
$path_info = OC_Request::getPathInfo();
if ($path_info === false || $path_info === '') {
OC_Response::setStatus(OC_Response::STATUS_NOT_FOUND);