diff options
Diffstat (limited to 'inc/templates/header.php')
-rwxr-xr-x | inc/templates/header.php | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/inc/templates/header.php b/inc/templates/header.php index 66289a23ba9..2035aba538a 100755 --- a/inc/templates/header.php +++ b/inc/templates/header.php @@ -6,9 +6,15 @@ <base href="<?php echo($WEBROOT); ?>/"/> <link rel="stylesheet" type="text/css" href="css/default.php"/> <script type='text/ecmascript' src='<?php echo($WEBROOT)?>/js/lib_ajax.js'></script> +<!-- <script type='text/ecmascript' src='<?php echo($WEBROOT)?>/js/timer.js'></script> --> +<!-- <script type='text/ecmascript' src='<?php echo($WEBROOT)?>/js/notification.js'></script> --> <script type='text/ecmascript' src='<?php echo($WEBROOT)?>/js/lib_xmlloader.js'></script> <script type='text/ecmascript' src='<?php echo($WEBROOT)?>/js/lib_files.js'></script> - <script type='text/ecmascript' src='<?php echo($WEBROOT)?>/js/ajax.js'></script> +<?php +foreach(OC_UTIL::$scripts as $script){ + echo("<script type='text/ecmascript' src='$WEBROOT/$script'></script>"); +} +?> <script type='text/ecmascript'> var WEBROOT='<?php echo($WEBROOT)?>'; </script> |