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
diff options
context:
space:
mode:
Diffstat (limited to 'public.php')
-rw-r--r--public.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/public.php b/public.php
index a9365d6db63..efa59267125 100644
--- a/public.php
+++ b/public.php
@@ -51,8 +51,8 @@ try {
$pathInfo = trim($pathInfo, '/');
list($service) = explode('/', $pathInfo);
}
- $file = OCP\Config::getAppValue('core', 'public_' . strip_tags($service));
- if (is_null($file)) {
+ $file = \OC::$server->getConfig()->getAppValue('core', 'public_' . strip_tags($service));
+ if ($file === null) {
header('HTTP/1.0 404 Not Found');
exit;
}