]> git.mxchange.org Git - friendica.git/commitdiff
Unused variable
authorPierre Rudloff <contact@rudloff.pro>
Sat, 23 Dec 2017 00:34:12 +0000 (01:34 +0100)
committerPierre Rudloff <contact@rudloff.pro>
Sat, 23 Dec 2017 00:34:12 +0000 (01:34 +0100)
include/api.php

index deb6a76da40253ee53ef8b1f7e60e4da12d38332..f44afd3a4173a3baae3f68bdf40bebaf780871fe 100644 (file)
@@ -3363,17 +3363,6 @@ function api_ff_ids($type,$qtype)
 
        $user_info = api_get_user($a);
 
-       if ($qtype == 'friends') {
-               $sql_extra = sprintf(" AND ( `rel` = %d OR `rel` = %d ) ", intval(CONTACT_IS_SHARING), intval(CONTACT_IS_FRIEND));
-       }
-       if ($qtype == 'followers') {
-               $sql_extra = sprintf(" AND ( `rel` = %d OR `rel` = %d ) ", intval(CONTACT_IS_FOLLOWER), intval(CONTACT_IS_FRIEND));
-       }
-
-       if (!$user_info["self"]) {
-               $sql_extra = " AND false ";
-       }
-
        $stringify_ids = (x($_REQUEST, 'stringify_ids') ? $_REQUEST['stringify_ids'] : false);
 
        $r = q(