aboutsummaryrefslogtreecommitdiffstats
path: root/include/api.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-11-26 16:38:48 -0800
committerfriendica <info@friendica.com>2013-11-26 16:38:48 -0800
commit6f6fcddfc3fc9bb2e63dd615f29116ced49838d5 (patch)
tree9f17a33d6ffce3e2b2167f00729769e792335b62 /include/api.php
parent7aa7f0f4eb201627b89c0587185ad72efc7e6606 (diff)
downloadvolse-hubzilla-6f6fcddfc3fc9bb2e63dd615f29116ced49838d5.tar.gz
volse-hubzilla-6f6fcddfc3fc9bb2e63dd615f29116ced49838d5.tar.bz2
volse-hubzilla-6f6fcddfc3fc9bb2e63dd615f29116ced49838d5.zip
api fixes
Diffstat (limited to 'include/api.php')
-rw-r--r--include/api.php16
1 files changed, 12 insertions, 4 deletions
diff --git a/include/api.php b/include/api.php
index 8f7be37c7..717f1572a 100644
--- a/include/api.php
+++ b/include/api.php
@@ -739,7 +739,7 @@ require_once('include/photos.php');
'created_at' => api_date($lastwall['created']),
'in_reply_to_status_id' => $in_reply_to_status_id,
'source' => (($lastwall['app']) ? $lastwall['app'] : 'web'),
- 'id' => (($w) ? $w[0]['abook_id'] : $user_info['id']),
+ 'id' => ($lastwall['id']),
'in_reply_to_user_id' => $in_reply_to_user_id,
'in_reply_to_screen_name' => $in_reply_to_screen_name,
'geo' => '',
@@ -1081,10 +1081,18 @@ require_once('include/photos.php');
// params
$id = intval(argv(3));
- logger('API: api_statuses_destroy: '.$id);
+ // first prove that we own the item
+
+ $r = q("select * from item where id = %d and uid = %d limit 1",
+ intval($id),
+ intval($user_info['uid'])
+ );
- require_once('include/items.php');
- drop_item($id, false);
+ if($r) {
+ logger('API: api_statuses_destroy: '.$id);
+ require_once('include/items.php');
+ drop_item($id, false);
+ }
if ($type == 'xml')
$ok = "true";