diff options
author | thomascube <thomas@roundcube.net> | 2009-07-03 13:38:30 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2009-07-03 13:38:30 +0000 |
commit | 8448fca1f11f69e29bca568cb0042e83dd6be89e (patch) | |
tree | eef9d4247282c0fa7eee32469da25d69b64eaeec /program | |
parent | 588135500bc21df518b1155c91e3514f82b0e653 (diff) |
Let internal 'template_container' hook append to existing content
Diffstat (limited to 'program')
-rw-r--r-- | program/include/rcube_plugin_api.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcube_plugin_api.php b/program/include/rcube_plugin_api.php index 52bbc40b5..381b36ff8 100644 --- a/program/include/rcube_plugin_api.php +++ b/program/include/rcube_plugin_api.php @@ -293,7 +293,7 @@ class rcube_plugin_api private function template_container_hook($attrib) { $container = $attrib['name']; - return array('content' => $this->template_contents[$container]); + return array('content' => $attrib['content'] . $this->template_contents[$container]); } /** |