diff options
author | Robin Appelman <icewind1991@gmail.com> | 2010-09-19 12:20:39 +0200 |
---|---|---|
committer | Robin Appelman <icewind1991@gmail.com> | 2010-09-19 12:20:39 +0200 |
commit | a23c74bdbcf36b222839280f4e41389229e1f056 (patch) | |
tree | 0cf568b39a2163ed88c314ccac1515460d066a4f /inc | |
parent | 3c1cdee910b4c6d80879aaa2b9676ebc54165837 (diff) | |
download | nextcloud-server-a23c74bdbcf36b222839280f4e41389229e1f056.tar.gz nextcloud-server-a23c74bdbcf36b222839280f4e41389229e1f056.zip |
fix loading of plugin defined stylesheets
Diffstat (limited to 'inc')
-rw-r--r-- | inc/templates/header.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/templates/header.php b/inc/templates/header.php index f39ac9debb9..9b67f34c884 100644 --- a/inc/templates/header.php +++ b/inc/templates/header.php @@ -32,7 +32,7 @@ foreach(OC_UTIL::$scripts as $script){ echo("<script type='text/ecmascript' src='$WEBROOT/$script'></script>\n"); } foreach(OC_UTIL::$styles as $style){ - echo("<link rel='stylesheet' type='text/css' href='$style'/>\n"); + echo("<link rel='stylesheet' type='text/css' href='$WEBROOT/$style'/>\n"); } ?> <script type='text/ecmascript'> |