mirror of
https://github.com/friendica/friendica
synced 2024-11-10 04:22:54 +00:00
delete item page respond with json if called via ajax.
This commit is contained in:
parent
f1a0aeb480
commit
0a79b2300c
1 changed files with 7 additions and 2 deletions
|
@ -929,8 +929,13 @@ function item_content(&$a) {
|
|||
|
||||
$o = '';
|
||||
if(($a->argc == 3) && ($a->argv[1] === 'drop') && intval($a->argv[2])) {
|
||||
require_once('include/items.php');
|
||||
$o = drop_item($a->argv[2]);
|
||||
require_once('include/items.php');
|
||||
$o = drop_item($a->argv[2], !is_ajax());
|
||||
if (is_ajax()){
|
||||
// ajax return: [<item id>, 0 (no perm) | <owner id>]
|
||||
echo json_encode(array(intval($a->argv[2]), intval($o)));
|
||||
kllme();
|
||||
}
|
||||
}
|
||||
return $o;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue