Browse Source

fix loading of plugin defined stylesheets

tags/v3.0
Robin Appelman 13 years ago
parent
commit
a23c74bdbc
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      inc/templates/header.php

+ 1
- 1
inc/templates/header.php View File

@@ -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'>

Loading…
Cancel
Save