summaryrefslogtreecommitdiffstats
path: root/lib/private/updater.php
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2015-02-21 20:51:50 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2015-02-23 16:44:40 +0100
commit1fd1b355e46aba83917c81ddc91a369598f9e6e1 (patch)
tree098e4f25ea3c40ad4b424223f788cfc0d06a3408 /lib/private/updater.php
parentf54cd14c7e7ea3a8e63ce35b3ac2c3ff5db984f5 (diff)
downloadnextcloud-server-1fd1b355e46aba83917c81ddc91a369598f9e6e1.tar.gz
nextcloud-server-1fd1b355e46aba83917c81ddc91a369598f9e6e1.zip
Fix namespace of OC_Setup -> \OC\Setup
Diffstat (limited to 'lib/private/updater.php')
-rw-r--r--lib/private/updater.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/updater.php b/lib/private/updater.php
index c3de319ce97..f76630d411d 100644
--- a/lib/private/updater.php
+++ b/lib/private/updater.php
@@ -211,7 +211,7 @@ class Updater extends BasicEmitter {
// Update htaccess files for apache hosts
if (isset($_SERVER['SERVER_SOFTWARE']) && strstr($_SERVER['SERVER_SOFTWARE'], 'Apache')) {
try {
- \OC_Setup::updateHtaccess();
+ \OC\Setup::updateHtaccess();
} catch (\Exception $e) {
throw new \Exception($e->getMessage());
}