aboutsummaryrefslogtreecommitdiffstats
path: root/mod/item.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-06-16 00:38:41 -0700
committerFriendika <info@friendika.com>2011-06-16 00:38:41 -0700
commitc92e6ed929ddb12a3020eecf419a30b680fe4240 (patch)
tree1ae0f866d29b4feed1ca4e34f401fbecf3c7b9a5 /mod/item.php
parente5b54e74ba22b487f816c5a5d16758be34be785a (diff)
downloadvolse-hubzilla-c92e6ed929ddb12a3020eecf419a30b680fe4240.tar.gz
volse-hubzilla-c92e6ed929ddb12a3020eecf419a30b680fe4240.tar.bz2
volse-hubzilla-c92e6ed929ddb12a3020eecf419a30b680fe4240.zip
avoid race condition on delete checked items
Diffstat (limited to 'mod/item.php')
-rw-r--r--mod/item.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/mod/item.php b/mod/item.php
index 3edbae696..98f4ff90c 100644
--- a/mod/item.php
+++ b/mod/item.php
@@ -26,6 +26,8 @@ function item_post(&$a) {
require_once('include/items.php');
$arr_drop = explode(',',$_POST['dropitems']);
drop_items($arr_drop);
+ $json = array('success' => 1);
+ echo json_encode($json);
killme();
}