diff options
Diffstat (limited to '')
-rw-r--r-- | include/template.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/template.class.php b/include/template.class.php index 10556a361..9e06b5d2d 100644 --- a/include/template.class.php +++ b/include/template.class.php @@ -475,7 +475,7 @@ class Template { $rep = "\n".implode( "\n", $this->html_head_elements ); if (strlen($this->html_style)) { - $rep='<style type="text/css">'.$this->html_style.'</style>'; + $rep.='<style type="text/css">'.$this->html_style.'</style>'; } $this->output = substr_replace( $this->output, $rep, $pos, 0 ); } //else maybe error or warning ? |