From: rabuzarus <>
Date: Thu, 28 Apr 2016 20:15:55 +0000 (+0200)
Subject: add a hook call to acl_lookup()
X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=3dad86f0e0a4b49a349b98ea05f721d16ed7d725;p=friendica.git

add a hook call to acl_lookup()
---

diff --git a/include/acl_selectors.php b/include/acl_selectors.php
index 65f125b852..fc3df52327 100644
--- a/include/acl_selectors.php
+++ b/include/acl_selectors.php
@@ -637,22 +637,35 @@ function acl_lookup(&$a, $out_type = 'json') {
 		$tot += count($unknow_contacts);
 	}
 
+	$results = array(
+		"tot"	=> $tot,
+		"start" => $start,
+		"count" => $count,
+		"groups" => $groups,
+		"contacts" => $contacts,
+		"items"	=> $items,
+		"type"	=> $type,
+		"search" => $search,
+	);
+
+	call_hooks('acl_lookup_end', $results);
+
 	if($out_type === 'html') {
 		$o = array(
-			'tot'		=> $tot,
-			'start'	=> $start,
-			'count'	=> $count,
-			'groups'	=> $groups,
-			'contacts'	=> $contacts,
+			'tot'		=> $results["tot"],
+			'start'		=> $results["start"],
+			'count'		=> $results["count"],
+			'groups'	=> $results["groups"],
+			'contacts'	=> $results["contacts"],
 		);
 		return $o;
 	}
 
 	$o = array(
-		'tot'	=> $tot,
-		'start' => $start,
-		'count'	=> $count,
-		'items'	=> $items,
+		'tot'	=> $results["tot"],
+		'start' => $results["start"],
+		'count'	=> $results["count"],
+		'items'	=> $results["items"],
 	);
 
 	echo json_encode($o);