diff options
author | blizzz <blizzz@arthur-schiwon.de> | 2017-01-30 13:01:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-30 13:01:24 +0100 |
commit | 64e9a1aec09bd24fe411e75df710b99dcb67bc86 (patch) | |
tree | 3f544e544fbd355e9b887f6553b4c9663a7f5586 /apps/theming/lib | |
parent | 9a036a2ae3594ab7d3322a93c176c8db2813ad1a (diff) | |
parent | a4ad8af6e3f0247db6f74dfcddc144e91f61fe84 (diff) | |
download | nextcloud-server-64e9a1aec09bd24fe411e75df710b99dcb67bc86.tar.gz nextcloud-server-64e9a1aec09bd24fe411e75df710b99dcb67bc86.zip |
Merge pull request #3176 from nextcloud/default-value-datadir
Add proper default value for datadir
Diffstat (limited to 'apps/theming/lib')
-rw-r--r-- | apps/theming/lib/Util.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/theming/lib/Util.php b/apps/theming/lib/Util.php index 9fea56838ad..5c9ccb3baa6 100644 --- a/apps/theming/lib/Util.php +++ b/apps/theming/lib/Util.php @@ -128,7 +128,7 @@ class Util { } catch (AppPathNotFoundException $e) {} if($this->config->getAppValue('theming', 'logoMime', '') !== '' && $this->rootFolder->nodeExists('/themedinstancelogo')) { - return $this->config->getSystemValue('datadirectory', \OC::$SERVERROOT . '/data/') . '/themedinstancelogo'; + return $this->config->getSystemValue('datadirectory', \OC::$SERVERROOT . '/data') . '/themedinstancelogo'; } return \OC::$SERVERROOT . '/core/img/logo.svg'; } |