aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/template.class.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/template.class.php b/include/template.class.php
index 6e9253723..5a79bbfb6 100644
--- a/include/template.class.php
+++ b/include/template.class.php
@@ -1048,7 +1048,10 @@ class ScriptLoader
function get_footer_scripts()
{
- $this->did_head || trigger_error("Footer scripts before header scripts ?", E_USER_WARNING);
+ if (!$this->did_head)
+ {
+ self::check_load_dep($this->registered_scripts);
+ }
$this->did_footer = true;
$todo = array();
foreach( $this->registered_scripts as $id => $script)