diff options
author | friendica <info@friendica.com> | 2013-01-04 19:24:17 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-01-04 19:24:17 -0800 |
commit | 70b6f989dd2295fefdf53f4d68c3cd0e7674b4bc (patch) | |
tree | bdd9524131c325d1c29a7ab19d0f7476342a3c38 /include/zot.php | |
parent | e208e07e35ddd59cf7d5476f6176e7d3a79b6ca4 (diff) | |
download | volse-hubzilla-70b6f989dd2295fefdf53f4d68c3cd0e7674b4bc.tar.gz volse-hubzilla-70b6f989dd2295fefdf53f4d68c3cd0e7674b4bc.tar.bz2 volse-hubzilla-70b6f989dd2295fefdf53f4d68c3cd0e7674b4bc.zip |
fix the contorted update logic on the network page
Diffstat (limited to 'include/zot.php')
-rw-r--r-- | include/zot.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/zot.php b/include/zot.php index b8cce4b41..af5504a19 100644 --- a/include/zot.php +++ b/include/zot.php @@ -347,9 +347,12 @@ function zot_gethub($arr) { dbesc($arr['url']), dbesc($arr['url_sig']) ); - if($r && count($r)) + if($r && count($r)) { + logger('zot_gethub: found', LOGGER_DEBUG); return $r[0]; + } } + logger('zot_gethub: not found', LOGGER_DEBUG); return null; } |