From: Fabrixxm <fabrix.xm@gmail.com>
Date: Fri, 15 Feb 2013 11:34:32 +0000 (-0500)
Subject: delete item page respond with json if called via ajax.
X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=0a79b2300c531ac632f7005c674f278f0936eb71;p=friendica.git

delete item page respond with json if called via ajax.
---

diff --git a/mod/item.php b/mod/item.php
index a037681dcb..612ac3a3c8 100644
--- a/mod/item.php
+++ b/mod/item.php
@@ -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;
 }