diff options
author | Thomas Willingham <beardyunixer@beardyunixer.com> | 2014-12-15 15:56:00 +0000 |
---|---|---|
committer | Thomas Willingham <beardyunixer@beardyunixer.com> | 2014-12-15 15:56:00 +0000 |
commit | 372b7b1405f7d2da71dd073ee995bec685fb419d (patch) | |
tree | dbf96c291b33712c7f170a6eda12b8f1929a9234 /include/network.php | |
parent | 049f08e6ad6d79c06d924e609d2af77a47f0c9c1 (diff) | |
download | volse-hubzilla-372b7b1405f7d2da71dd073ee995bec685fb419d.tar.gz volse-hubzilla-372b7b1405f7d2da71dd073ee995bec685fb419d.tar.bz2 volse-hubzilla-372b7b1405f7d2da71dd073ee995bec685fb419d.zip |
Doco: How to write foreign doco in how to write doco doco.
Diffstat (limited to 'include/network.php')
-rw-r--r-- | include/network.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/network.php b/include/network.php index db48caf37..ee2a6a59b 100644 --- a/include/network.php +++ b/include/network.php @@ -1092,7 +1092,9 @@ function discover_by_webbie($webbie) { $r = q("select * from xchan where xchan_hash = '%s' limit 1", dbesc($webbie) ); - if(! $r) { + if($r) + return true; + $r = q("insert into xchan ( xchan_hash, xchan_guid, xchan_pubkey, xchan_addr, xchan_url, xchan_name, xchan_network, xchan_instance_url, xchan_name_date ) values ('%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s') ", dbesc($addr), dbesc($guid), @@ -1104,7 +1106,6 @@ function discover_by_webbie($webbie) { dbesc(z_root()), dbescdate(datetime_convert()) ); - } $r = q("select * from hubloc where hubloc_hash = '%s' limit 1", dbesc($webbie) |