diff options
author | Haakon Meland Eriksen <haakon.eriksen@far.no> | 2015-08-06 23:57:28 +0200 |
---|---|---|
committer | Haakon Meland Eriksen <haakon.eriksen@far.no> | 2015-08-06 23:57:28 +0200 |
commit | 07cd0c870f48ec838c23fa7c6966ceb1c41f06ab (patch) | |
tree | 26a1177441c40c2d3e42d3fc3617302dc2d86f12 /include/network.php | |
parent | 2b1e6723168665039cdccb951e29c4220351367a (diff) | |
parent | 1b0cb9388cd5c416af5ba270127b14efdd1c0a6b (diff) | |
download | volse-hubzilla-07cd0c870f48ec838c23fa7c6966ceb1c41f06ab.tar.gz volse-hubzilla-07cd0c870f48ec838c23fa7c6966ceb1c41f06ab.tar.bz2 volse-hubzilla-07cd0c870f48ec838c23fa7c6966ceb1c41f06ab.zip |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'include/network.php')
-rw-r--r-- | include/network.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/network.php b/include/network.php index 5d01b7eba..ef92e0132 100644 --- a/include/network.php +++ b/include/network.php @@ -1068,6 +1068,11 @@ function discover_by_webbie($webbie) { } } + $arr = array('address' => $webbie, 'success' => false); + call_hooks('discover_by_webbie', $arr); + if($arr['success']) + return true; + $result = array(); $network = null; $diaspora = false; |