diff --git a/core/templates/layout.guest.php b/core/templates/layout.guest.php
index 2bd2e20df70..7ba7abdbf12 100644
--- a/core/templates/layout.guest.php
+++ b/core/templates/layout.guest.php
@@ -9,6 +9,7 @@
diff --git a/lib/template.php b/lib/template.php
index eccf011e8d2..57e9c15f5e6 100644
--- a/lib/template.php
+++ b/lib/template.php
@@ -323,11 +323,11 @@ class OC_Template{
*/
public function appendIfExist($type, $root, $web, $file) {
if (is_file($root.'/'.$file)) {
- if($type == 'cssfiles' && $root == OC::$APPSROOT){
- $pathes = explode('/', $file);
- $app = $pathes['1'];
- unset($pathes['0']);
- unset($pathes['1']);
+ $pathes = explode('/', $file);
+ if($type == 'cssfiles' && $root == OC::$APPSROOT && $pathes[0] == 'apps'){
+ $app = $pathes[1];
+ unset($pathes[0]);
+ unset($pathes[1]);
$path = implode('/', $pathes);
$this->append( $type, OC_Helper::linkTo($app, $path));
}else{