Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2022-05-16 20:04:56 +0300
committerGitHub <noreply@github.com>2022-05-16 20:04:56 +0300
commit795a13a8882a88537c3efe4257b855461e45a489 (patch)
treef6a6e7f2e38075049bd522510748dd2fbb719725 /lib
parent03c46cf1151da2d107fd695899853b888aecd4de (diff)
parentd3acf8203d07d646c3ee39721903a3f54dc23bbb (diff)
Merge pull request #32412 from nextcloud/bugfix/noid/maintenance-script
Properly import maintenance script
Diffstat (limited to 'lib')
-rw-r--r--lib/base.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/base.php b/lib/base.php
index 8cf5360b084..377644c70a2 100644
--- a/lib/base.php
+++ b/lib/base.php
@@ -297,8 +297,8 @@ class OC {
// render error page
$template = new OC_Template('', 'update.user', 'guest');
- OC_Util::addScript('maintenance');
- OC_Util::addStyle('core', 'guest');
+ \OCP\Util::addScript('core', 'maintenance');
+ \OCP\Util::addStyle('core', 'guest');
$template->printPage();
die();
}