aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/objects.php
diff options
context:
space:
mode:
authormarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-03-11 10:27:48 +0000
committermarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-03-11 10:27:48 +0000
commitef9ceb15f729896bb513f73d4a69d090dd148455 (patch)
treec7c73f11f16708556d4af7ec5db2fea706a89966 /engine/lib/objects.php
parent0b96b664fe19a23cc2a93395bcc40446bf8949e7 (diff)
downloadelgg-ef9ceb15f729896bb513f73d4a69d090dd148455.tar.gz
elgg-ef9ceb15f729896bb513f73d4a69d090dd148455.tar.bz2
Closes 868: Fixes regression introduced in [3119]. Version number bumped.
git-svn-id: https://code.elgg.org/elgg/trunk@3153 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/objects.php')
-rw-r--r--engine/lib/objects.php37
1 files changed, 8 insertions, 29 deletions
diff --git a/engine/lib/objects.php b/engine/lib/objects.php
index 7ae8b6cff..7d888f9a6 100644
--- a/engine/lib/objects.php
+++ b/engine/lib/objects.php
@@ -120,21 +120,9 @@
// Now save specific stuff
return create_object_entity($this->get('guid'), $this->get('title'), $this->get('description'), $this->get('container_guid'));
- }
+ }
/**
- * Delete this object.
- * @return true|false
- */
- public function delete()
- {
- if (parent::delete())
- return delete_object_entity($this->get('guid'));
-
- return false;
- }
-
- /**
* Get sites that this object is a member of
*
* @param string $subtype Optionally, the subtype of result we want to limit to
@@ -302,27 +290,18 @@
return false;
}
- /**
+ /**
+ * THIS FUNCTION IS DEPRECATED.
+ *
* Delete a object's extra data.
*
* @param int $guid
*/
function delete_object_entity($guid)
- {
- global $CONFIG;
-
- $guid = (int)$guid;
-
- $row = get_object_entity_as_row($guid);
-
- // Check to see if we have access and it exists
- if ($row)
- {
- // Delete any existing stuff
- return delete_data("DELETE from {$CONFIG->dbprefix}objects_entity where guid=$guid");
- }
-
- return false;
+ {
+ system_message(sprintf(elgg_echo('deprecatedfunction'), 'delete_user_entity'));
+
+ return 1; // Always return that we have deleted one row in order to not break existing code.
}
/**