diff options
-rw-r--r-- | include/template.class.php | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/include/template.class.php b/include/template.class.php index b9d06b750..7456e2f3c 100644 --- a/include/template.class.php +++ b/include/template.class.php @@ -329,14 +329,7 @@ class Template { $content = trim($content); if ( !empty($content) ) { // second call - if ( empty($this->output) ) - {//page header not parsed yet - $this->append('head_elements', $content); - } - else - { - $this->html_head_elements[] = $content; - } + $this->html_head_elements[] = $content; } } |