diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-08-03 16:52:51 -0700 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-08-03 16:52:51 -0700 |
commit | b737e224b149c1c27775bfc213125eea0ce540b8 (patch) | |
tree | 76625d521743a6af375700231a009321ab9d86e8 /include/network.php | |
parent | db70c76494997dfda4f850b4ee63ddae2c608bde (diff) | |
download | volse-hubzilla-b737e224b149c1c27775bfc213125eea0ce540b8.tar.gz volse-hubzilla-b737e224b149c1c27775bfc213125eea0ce540b8.tar.bz2 volse-hubzilla-b737e224b149c1c27775bfc213125eea0ce540b8.zip |
more work separating Diaspora from core
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; |