diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2012-01-17 09:03:40 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2012-01-17 09:03:40 +0000 |
| commit | ac09e223f119442baaa6b4d3d8b33ce8cf3b81c4 (patch) | |
| tree | 373652451b1906e2c1570e3bbfc56e9514597e49 /plugins/help | |
| parent | 434d929108d4286ac9dbfc8966fad1a9b85bded3 (diff) | |
- Replace create_attrib_string() with html::attrib_string()
git-svn-id: https://svn.roundcube.net/trunk@5784 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'plugins/help')
| -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; } |
