diff options
author | Georg Ehrke <georg@ownCloud.com> | 2013-06-03 12:57:47 +0200 |
---|---|---|
committer | Georg Ehrke <georg@ownCloud.com> | 2013-06-03 12:57:47 +0200 |
commit | ce14788ac0ee7af0950aca96b06b7d48951c71df (patch) | |
tree | 84b8431e185c73928a38a79ae96627b370f31775 /public.php | |
parent | b76725c1fa1e23fb8e648e47d01c6001eab271ea (diff) | |
download | nextcloud-server-ce14788ac0ee7af0950aca96b06b7d48951c71df.tar.gz nextcloud-server-ce14788ac0ee7af0950aca96b06b7d48951c71df.zip |
public.php - check if maintenance mode is enabled
Diffstat (limited to 'public.php')
-rw-r--r-- | public.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/public.php b/public.php index 759e8e91619..3d7fd378af4 100644 --- a/public.php +++ b/public.php @@ -1,6 +1,7 @@ <?php $RUNTIME_NOAPPS = true; require_once 'lib/base.php'; +OC::checkMaintenanceMode(); if (!isset($_GET['service'])) { header('HTTP/1.0 404 Not Found'); exit; |