diff options
author | Steve Clay <steve@mrclay.org> | 2012-10-11 15:49:02 -0400 |
---|---|---|
committer | Steve Clay <steve@mrclay.org> | 2012-11-07 16:55:38 -0500 |
commit | 6648304aa71067a05b0d4166396f5f93c0f66628 (patch) | |
tree | acc332d05de9199b59dc2b7320a530d801ea95f4 /mod/groups | |
parent | d134beadb79fcc90a75bda8bbcbfb9987b27470c (diff) | |
download | elgg-6648304aa71067a05b0d4166396f5f93c0f66628.tar.gz elgg-6648304aa71067a05b0d4166396f5f93c0f66628.tar.bz2 |
Better HTML decoding and output/email encoding
Diffstat (limited to 'mod/groups')
-rw-r--r-- | mod/groups/actions/groups/edit.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mod/groups/actions/groups/edit.php b/mod/groups/actions/groups/edit.php index a4169461a..2d7e1f023 100644 --- a/mod/groups/actions/groups/edit.php +++ b/mod/groups/actions/groups/edit.php @@ -8,15 +8,15 @@ // Load configuration global $CONFIG; +elgg_make_sticky_form('groups'); + /** * wrapper for recursive array walk decoding */ function profile_array_decoder(&$v) { - $v = html_entity_decode($v, ENT_COMPAT, 'UTF-8'); + $v = _elgg_html_decode($v); } -elgg_make_sticky_form('groups'); - // Get group fields $input = array(); foreach ($CONFIG->group as $shortname => $valuetype) { @@ -25,7 +25,7 @@ foreach ($CONFIG->group as $shortname => $valuetype) { if (is_array($input[$shortname])) { array_walk_recursive($input[$shortname], 'profile_array_decoder'); } else { - $input[$shortname] = html_entity_decode($input[$shortname], ENT_COMPAT, 'UTF-8'); + $input[$shortname] = _elgg_html_decode($input[$shortname]); } if ($valuetype == 'tags') { |