diff options
author | Tom N Harris <tnharris@whoopdedo.org> | 2010-10-21 13:20:08 -0400 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2010-10-24 09:55:20 +0200 |
commit | c277a6bdf6a2286eadaba9b8ad5c638b9d50922b (patch) | |
tree | d74f91cb5e98acaa0e6a1e8aa99745378116216d /lib/plugins | |
parent | 24650a1909022a24959489f1508fd877ce6db576 (diff) | |
download | rpg-c277a6bdf6a2286eadaba9b8ad5c638b9d50922b.tar.gz rpg-c277a6bdf6a2286eadaba9b8ad5c638b9d50922b.tar.bz2 |
Deprecate html_attbuild in favor of buildAttributes
Diffstat (limited to 'lib/plugins')
-rw-r--r-- | lib/plugins/acl/admin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/plugins/acl/admin.php b/lib/plugins/acl/admin.php index 84932f7ac..3e7bd8121 100644 --- a/lib/plugins/acl/admin.php +++ b/lib/plugins/acl/admin.php @@ -765,7 +765,7 @@ class admin_plugin_acl extends DokuWiki_Admin_Plugin { //build code $ret .= '<label for="pbox'.$label.'" title="'.$this->getLang('acl_perm'.$perm).'"'.$class.'>'; - $ret .= '<input '.html_attbuild($atts).' /> '; + $ret .= '<input '.buildAttributes($atts).' /> '; $ret .= $this->getLang('acl_perm'.$perm); $ret .= '</label>'.NL; } |