diff options
Diffstat (limited to 'program/include')
-rwxr-xr-x | program/include/rcube_template.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/program/include/rcube_template.php b/program/include/rcube_template.php index af5164f86..d4c3464db 100755 --- a/program/include/rcube_template.php +++ b/program/include/rcube_template.php @@ -329,6 +329,7 @@ class rcube_template extends rcube_html_page // make sure all <form> tags have a valid request token $template = preg_replace_callback('/<form\s+([^>]+)>/Ui', array($this, 'alter_form_tag'), $template); + $this->footer = preg_replace_callback('/<form\s+([^>]+)>/Ui', array($this, 'alter_form_tag'), $this->footer); // call super method parent::write($template, $this->config['skin_path']); |