diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2012-11-06 13:21:04 +0100 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2012-11-06 13:21:04 +0100 |
commit | 28de3911825bde79ee5a92762940ef310baab737 (patch) | |
tree | cd9b909b722b3e4f7772039fe35cae2be1e9bff9 /plugins/help/help.php | |
parent | 03970bd54936ecbcfe20015897057dab1ffa7c12 (diff) |
Recursively resolve paths of iframe contents; unify contentframe registration and reduce code-duplication
Diffstat (limited to 'plugins/help/help.php')
-rw-r--r-- | plugins/help/help.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/help/help.php b/plugins/help/help.php index 1a76cbbda..4b11dceb3 100644 --- a/plugins/help/help.php +++ b/plugins/help/help.php @@ -90,8 +90,7 @@ class help extends rcube_plugin $attrib['name'] = $attrib['id']; - return html::tag('iframe', $attrib, '', array( - 'id', 'class', 'style', 'src', 'width', 'height', 'frameborder')); + return $rcmail->output->frame($attrib); } } |