diff options
| -rw-r--r-- | plugins/help/help.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/help/help.php b/plugins/help/help.php index ccf80820b..d59ea4b0c 100644 --- a/plugins/help/help.php +++ b/plugins/help/help.php @@ -94,13 +94,13 @@ class help extends rcube_plugin if (empty($attrib['id'])) $attrib['id'] = 'rcmailhelpcontent'; - + // allow the following attributes to be added to the <iframe> tag - $attrib_str = create_attrib_string($attrib, array( + $attrib_str = html::attrib_string($attrib, array( 'id', 'class', 'style', 'src', 'width', 'height', 'frameborder')); $out = sprintf('<iframe name="%s"%s></iframe>'."\n", $attrib['id'], $attrib_str); - + return $out; } |
