diff options
author | Bart Visscher <bartv@thisnet.nl> | 2013-04-19 16:04:33 +0200 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2013-04-19 16:09:39 +0200 |
commit | e1c5b31d6544b5f7700888526f7e55b66e677498 (patch) | |
tree | 4258dddea5a7a6763808388e765b579ed2e296c0 | |
parent | 25e7dc1ec5541b0bec8faa667088e08c25b40046 (diff) | |
download | nextcloud-server-e1c5b31d6544b5f7700888526f7e55b66e677498.tar.gz nextcloud-server-e1c5b31d6544b5f7700888526f7e55b66e677498.zip |
Test if we want a 3rdparty style/script before checking the 3rdparty root
-rw-r--r-- | lib/templatelayout.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/templatelayout.php b/lib/templatelayout.php index 73094232230..69bebac0503 100644 --- a/lib/templatelayout.php +++ b/lib/templatelayout.php @@ -111,7 +111,8 @@ class OC_TemplateLayout extends OC_Template { $files = array(); foreach($styles as $style) { // is it in 3rdparty? - if(self::appendIfExist($files, OC::$THIRDPARTYROOT, OC::$THIRDPARTYWEBROOT, $style.'.css')) { + if(strpos($style, '3rdparty') === 0 && + self::appendIfExist($files, OC::$THIRDPARTYROOT, OC::$THIRDPARTYWEBROOT, $style.'.css')) { // or in the owncloud root? }elseif(self::appendIfExist($files, OC::$SERVERROOT, OC::$WEBROOT, "$style$fext.css" )) { @@ -169,7 +170,8 @@ class OC_TemplateLayout extends OC_Template { $files = array(); foreach($scripts as $script) { // Is it in 3rd party? - if(self::appendIfExist($files, OC::$THIRDPARTYROOT, OC::$THIRDPARTYWEBROOT, $script.'.js')) { + if(strpos($script, '3rdparty') === 0 && + self::appendIfExist($files, OC::$THIRDPARTYROOT, OC::$THIRDPARTYWEBROOT, $script.'.js')) { // Is it in apps and overwritten by the theme? }elseif(self::appendIfExist($files, OC::$SERVERROOT, OC::$WEBROOT, "themes/$theme/apps/$script$fext.js" )) { |