diff options
author | Bernhard Posselt <nukeawhale@gmail.com> | 2013-04-24 13:45:40 +0200 |
---|---|---|
committer | Bernhard Posselt <nukeawhale@gmail.com> | 2013-04-24 13:45:40 +0200 |
commit | b98b56e4a8c92d56969806f62390d57d5986855a (patch) | |
tree | 529b8b06c7e32bc7504776a60b83cfe0c9f5a2cd /lib/template.php | |
parent | b1c9b296e809f1a1ebc1283013138f4f5cfc0141 (diff) | |
download | nextcloud-server-b98b56e4a8c92d56969806f62390d57d5986855a.tar.gz nextcloud-server-b98b56e4a8c92d56969806f62390d57d5986855a.zip |
check if there is a default/ folder in the theme directory if no theme exists
Diffstat (limited to 'lib/template.php')
-rw-r--r-- | lib/template.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/template.php b/lib/template.php index 434c1e9e990..f007618ff19 100644 --- a/lib/template.php +++ b/lib/template.php @@ -272,7 +272,7 @@ class OC_Template{ protected function findTemplate($name) { // Read the selected theme from the config file - $theme=OC_Config::getValue( "theme" ); + $theme = OC_Util::getTheme(); // Read the detected formfactor and use the right file name. $fext = self::getFormFactorExtension(); |