Changeset 10655


Ignore:
Timestamp:
Apr 28, 2011, 9:04:34 PM (13 years ago)
Author:
rvelices
Message:

get_combined_scripts footer and header can be now in the same tpl file (warning before and not working properly)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2/include/template.class.php

    r10617 r10655  
    10491049  function get_footer_scripts()
    10501050  {
    1051     $this->did_head || trigger_error("Footer scripts before header scripts ?", E_USER_WARNING);
     1051    if (!$this->did_head)
     1052    {
     1053      self::check_load_dep($this->registered_scripts);
     1054    }
    10521055    $this->did_footer = true;
    10531056    $todo = array();
Note: See TracChangeset for help on using the changeset viewer.