diff options
author | friendica <info@friendica.com> | 2012-12-05 18:50:27 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-12-05 18:50:27 -0800 |
commit | d5800c61dc85971bebd01e751f463d76552e3fe9 (patch) | |
tree | 4fd9aa84bc6e63fcad3b331605c52a8fb334bf00 | |
parent | 186163a5ce0be821587a2f888234a4cad993adbf (diff) | |
download | volse-hubzilla-d5800c61dc85971bebd01e751f463d76552e3fe9.tar.gz volse-hubzilla-d5800c61dc85971bebd01e751f463d76552e3fe9.tar.bz2 volse-hubzilla-d5800c61dc85971bebd01e751f463d76552e3fe9.zip |
third param to zot_finger no longer needed
-rw-r--r-- | include/follow.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/follow.php b/include/follow.php index 7b9405247..3d5785f89 100644 --- a/include/follow.php +++ b/include/follow.php @@ -34,7 +34,7 @@ function new_contact($uid,$url,$channel,$interactive = false) { if($arr['channel']['success']) $ret = $arr['channel']; else - $ret = zot_finger($url,$channel,false); + $ret = zot_finger($url,$channel); if($ret['success']) { $j = json_decode($ret['body']); |