diff options
Diffstat (limited to 'engine/lib/upgrades')
-rw-r--r-- | engine/lib/upgrades/2010052601.php | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/engine/lib/upgrades/2010052601.php b/engine/lib/upgrades/2010052601.php new file mode 100644 index 000000000..5b477910f --- /dev/null +++ b/engine/lib/upgrades/2010052601.php @@ -0,0 +1,27 @@ +<?php + +// Upgrade to fix encoding issues on group data: #1963 + +elgg_set_ignore_access(TRUE); + +$params = array('type' => 'group', + 'limit' => 0); +$groups = elgg_get_entities($params); +if ($groups) { + foreach ($groups as $group) { + $group->name = html_entity_decode($group->name, ENT_COMPAT, 'UTF-8'); + $group->description = html_entity_decode($group->description, ENT_COMPAT, 'UTF-8'); + $group->briefdescription = html_entity_decode($group->briefdescription, ENT_COMPAT, 'UTF-8'); + $group->website = html_entity_decode($group->website, ENT_COMPAT, 'UTF-8'); + if ($group->interests) { + $tags = $group->interests; + foreach ($tags as $index=>$tag) { + $tags[$index] = html_entity_decode($tag, ENT_COMPAT, 'UTF-8'); + } + $group->interests = $tags; + } + + $group->save(); + } +} +elgg_set_ignore_access(FALSE); |