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

index c9c227daaa3704baff56503b33c9bb7e8f08e7ab..d7e383d53c46d1b8d7217d71ccdf718da8e561cc 100644 (file)
@@ -3163,10 +3163,10 @@ function api_statuses_f($qtype)
                return false;
        }
 
+       $sql_extra = '';
        if ($qtype == 'friends') {
                $sql_extra = sprintf(" AND ( `rel` = %d OR `rel` = %d ) ", intval(CONTACT_IS_SHARING), intval(CONTACT_IS_FRIEND));
-       }
-       if ($qtype == 'followers') {
+       } elseif ($qtype == 'followers') {
                $sql_extra = sprintf(" AND ( `rel` = %d OR `rel` = %d ) ", intval(CONTACT_IS_FOLLOWER), intval(CONTACT_IS_FRIEND));
        }