summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2012-01-17 09:03:40 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2012-01-17 09:03:40 +0000
commitac09e223f119442baaa6b4d3d8b33ce8cf3b81c4 (patch)
tree373652451b1906e2c1570e3bbfc56e9514597e49
parent434d929108d4286ac9dbfc8966fad1a9b85bded3 (diff)
- Replace create_attrib_string() with html::attrib_string()
git-svn-id: https://svn.roundcube.net/trunk@5784 208e9e7b-5314-0410-a742-e7e81cd9613c
-rw-r--r--plugins/help/help.php6
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;
}