aboutsummaryrefslogtreecommitdiff
path: root/mod/pages/actions/pages/delete.php
diff options
context:
space:
mode:
authorcash <cash.costello@gmail.com>2013-03-30 15:00:53 -0400
committercash <cash.costello@gmail.com>2013-03-30 15:00:53 -0400
commit324f4ed234638c66815fbaf2601373c869d023b2 (patch)
tree1fe17a44af93495962e85ba5ce6f44b11dff719a /mod/pages/actions/pages/delete.php
parentaa8af5035f0f7b2ed54eb42a136b58565e023c01 (diff)
downloadelgg-324f4ed234638c66815fbaf2601373c869d023b2.tar.gz
elgg-324f4ed234638c66815fbaf2601373c869d023b2.tar.bz2
fixed the switch from page to page_top - the parent_guid metadata needed to be deleted
Diffstat (limited to 'mod/pages/actions/pages/delete.php')
-rw-r--r--mod/pages/actions/pages/delete.php32
1 files changed, 17 insertions, 15 deletions
diff --git a/mod/pages/actions/pages/delete.php b/mod/pages/actions/pages/delete.php
index fbb4cf551..f6b25cd7e 100644
--- a/mod/pages/actions/pages/delete.php
+++ b/mod/pages/actions/pages/delete.php
@@ -22,22 +22,24 @@ if (elgg_instanceof($page, 'object', 'page') || elgg_instanceof($page, 'object',
));
if ($children) {
foreach ($children as $child) {
- $child->parent_guid = $parent;
-
- // If no parent, we need to transform $child in a page_top
- if ($parent == 0) {
- $dbprefix = elgg_get_config('dbprefix');
- $subtype_id = add_subtype('object', 'page_top');
- update_data("UPDATE {$dbprefix}entities
- set subtype='$subtype_id' WHERE guid=$child->guid");
-
- // If memcache is available then delete this entry from the cache
- static $newentity_cache;
- if ((!$newentity_cache) && (is_memcache_available())) {
+ if ($parent) {
+ $child->parent_guid = $parent;
+ } else {
+ // If no parent, we need to transform $child to a page_top
+ $db_prefix = elgg_get_config('dbprefix');
+ $subtype_id = (int)get_subtype_id('object', 'page_top');
+ $child_guid = (int)$child->guid;
+ update_data("UPDATE {$db_prefix}entities
+ SET subtype = $subtype_id WHERE guid = $child_guid");
+ elgg_delete_metadata(array(
+ 'guid' => $child_guid,
+ 'metadata_name' => 'parent_guid',
+ ));
+
+ // If memcache is available, delete this entry from the cache
+ if (is_memcache_available()) {
$newentity_cache = new ElggMemcache('new_entity_cache');
- }
- if ($newentity_cache) {
- $newentity_cache->delete($guid);
+ $newentity_cache->delete($child_guid);
}
}
}