]> git.mxchange.org Git - friendica.git/commitdiff
Continued a bit:
authorRoland Haeder <roland@mxchange.org>
Fri, 14 Apr 2017 13:14:39 +0000 (15:14 +0200)
committerRoland Haeder <roland@mxchange.org>
Fri, 14 Apr 2017 13:14:39 +0000 (15:14 +0200)
- rewrote 2 multi-line single comments to one multi-line comment
- added TODO for rewriting function to closure (CR request)

Signed-off-by: Roland Haeder <roland@mxchange.org>
include/acl_selectors.php

index 198b009435f775d6c770e317a02400427dd8f1d9..ccba72ec1857d5c57633d672690c2f2a54cd3f8f 100644 (file)
@@ -625,8 +625,11 @@ function acl_lookup(App $a, $out_type = 'json') {
        $items = array_merge($groups, $contacts);
 
        if ($conv_id) {
-               /* if $conv_id is set, get unknow contacts in thread */
-               /* but first get know contacts url to filter them out */
+               /*
+                * if $conv_id is set, get unknow contacts in thread
+                * but first get know contacts url to filter them out
+                * @TODO rewrite below function to closure
+                */
                function _contact_link($i) { return dbesc($i['link']); }
                $known_contacts = array_map('_contact_link', $contacts);
                $unknow_contacts = array();