diff options
Diffstat (limited to 'program/include/rcube_html_page.php')
| -rw-r--r-- | program/include/rcube_html_page.php | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/program/include/rcube_html_page.php b/program/include/rcube_html_page.php index 0cceb8964..200233c5d 100644 --- a/program/include/rcube_html_page.php +++ b/program/include/rcube_html_page.php @@ -219,12 +219,12 @@ class rcube_html_page              }          } -        if (!empty($this->scripts['foot'])) { -            $page_footer .= sprintf($this->script_tag, $this->scripts['foot']); +        if (!empty($this->footer)) { +            $page_footer .= $this->footer . "\n";          } -        if (!empty($this->footer)) { -            $page_footer .= $this->footer; +        if (!empty($this->scripts['foot'])) { +            $page_footer .= sprintf($this->script_tag, $this->scripts['foot']);          }          // find page header | 
