From a19462d8b0c1bc07597c78c92a79415694eee3eb Mon Sep 17 00:00:00 2001 From: brettp Date: Sat, 29 May 2010 02:16:50 +0000 Subject: Merged [6223] - [6228] into trunk. git-svn-id: http://code.elgg.org/elgg/trunk@6283 36083f99-b078-4883-b0ff-0f9b5a30f544 --- engine/lib/upgrades/2010052601.php | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 engine/lib/upgrades/2010052601.php (limited to 'engine') 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 @@ + '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); -- cgit v1.2.3