summaryrefslogtreecommitdiff
path: root/classes/Foreign_link.php
diff options
context:
space:
mode:
authorZach Copley <zach@status.net>2010-03-05 03:14:40 +0000
committerZach Copley <zach@status.net>2010-03-05 03:55:56 +0000
commite3c4b0c85d3fbae9604b22d3666fe36a3c1c7551 (patch)
treeaf8c84cfed48cf79ead3ffe5e44c69f244c3b9e4 /classes/Foreign_link.php
parent6aac7cc6cd011b3c86f3f4c8e00a14f992a78306 (diff)
A better way to safely delete Foreign_links
Diffstat (limited to 'classes/Foreign_link.php')
-rw-r--r--classes/Foreign_link.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/classes/Foreign_link.php b/classes/Foreign_link.php
index ae8c22fd8..e47b2e309 100644
--- a/classes/Foreign_link.php
+++ b/classes/Foreign_link.php
@@ -113,4 +113,21 @@ class Foreign_link extends Memcached_DataObject
return User::staticGet($this->user_id);
}
+ // Make sure we only ever delete one record at a time
+ function safeDelete()
+ {
+ if (!empty($this->user_id)
+ && !empty($this->foreign_id)
+ && !empty($this->service))
+ {
+ return $this->delete();
+ } else {
+ common_debug(LOG_WARNING,
+ 'Foreign_link::safeDelete() tried to delete a '
+ . 'Foreign_link without a fully specified compound key: '
+ . var_export($this, true));
+ return false;
+ }
+ }
+
}