aboutsummaryrefslogtreecommitdiffstats
path: root/include/zot.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-01-01 02:06:41 -0800
committerfriendica <info@friendica.com>2013-01-01 02:06:41 -0800
commit4d7fe15d3b31f7c5279b08c73e23cb21f906cd15 (patch)
tree737f1491393bb17e4be7aad8b106ee37ef7ced03 /include/zot.php
parent93d85858d556e64fa86befa859ee01241a0a2754 (diff)
downloadvolse-hubzilla-4d7fe15d3b31f7c5279b08c73e23cb21f906cd15.tar.gz
volse-hubzilla-4d7fe15d3b31f7c5279b08c73e23cb21f906cd15.tar.bz2
volse-hubzilla-4d7fe15d3b31f7c5279b08c73e23cb21f906cd15.zip
more poco discovery
Diffstat (limited to 'include/zot.php')
-rw-r--r--include/zot.php20
1 files changed, 12 insertions, 8 deletions
diff --git a/include/zot.php b/include/zot.php
index 3950d5f4b..ea2800672 100644
--- a/include/zot.php
+++ b/include/zot.php
@@ -394,10 +394,11 @@ function import_xchan_from_json($j) {
if($r) {
if($r[0]['xchan_photo_date'] != $j->photo_updated)
$update_photos = true;
- if($r[0]['xchan_name_date'] != $j->name_updated) {
- $r = q("update xchan set xchan_name = '%s', xchan_name_date = '%s' where xchan_hash = '%s' limit 1",
+ if(($r[0]['xchan_name_date'] != $j->name_updated) || ($r[0]['xchan_connurl'] != $j->connections_url)) {
+ $r = q("update xchan set xchan_name = '%s', xchan_name_date = '%s', xchan_connurl = '%s' where xchan_hash = '%s' limit 1",
dbesc($j->name),
dbesc($j->name_updated),
+ dbesc($j->connections_url),
dbesc($xchan_hash)
);
}
@@ -405,8 +406,8 @@ function import_xchan_from_json($j) {
else {
$import_photos = true;
$x = q("insert into xchan ( xchan_hash, xchan_guid, xchan_guid_sig, xchan_pubkey, xchan_photo_mimetype,
- xchan_photo_l, xchan_addr, xchan_url, xchan_name, xchan_network, xchan_photo_date, xchan_name_date)
- values ( '%s', '%s', '%s', '%s' , '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s') ",
+ xchan_photo_l, xchan_addr, xchan_url, xchan_connurl, xchan_name, xchan_network, xchan_photo_date, xchan_name_date)
+ values ( '%s', '%s', '%s', '%s' , '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s') ",
dbesc($xchan_hash),
dbesc($j->guid),
dbesc($j->guid_sig),
@@ -415,6 +416,7 @@ function import_xchan_from_json($j) {
dbesc($j->photo),
dbesc($j->address),
dbesc($j->url),
+ dbesc($j->connections_url),
dbesc($j->name),
dbesc('zot'),
dbesc($j->photo_updated),
@@ -512,10 +514,11 @@ function import_xchan($arr) {
if($r) {
if($r[0]['xchan_photo_date'] != $arr['photo_updated'])
$update_photos = true;
- if($r[0]['xchan_name_date'] != $arr['name_updated']) {
- $r = q("update xchan set xchan_name = '%s', xchan_name_date = '%s' where xchan_hash = '%s' limit 1",
+ if(($r[0]['xchan_name_date'] != $arr['name_updated']) || ($r[0]['xchan_connurl'] != $arr['connections_url'])) {
+ $r = q("update xchan set xchan_name = '%s', xchan_name_date = '%s', xchan_connurl = '%s' where xchan_hash = '%s' limit 1",
dbesc($arr['name']),
dbesc($arr['name_updated']),
+ dbesc($arr['connections_url']),
dbesc($xchan_hash)
);
}
@@ -523,8 +526,8 @@ function import_xchan($arr) {
else {
$import_photos = true;
$x = q("insert into xchan ( xchan_hash, xchan_guid, xchan_guid_sig, xchan_pubkey, xchan_photo_mimetype,
- xchan_photo_l, xchan_addr, xchan_url, xchan_name, xchan_network, xchan_photo_date, xchan_name_date)
- values ( '%s', '%s', '%s', '%s' , '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s') ",
+ xchan_photo_l, xchan_addr, xchan_url, xchan_connurl, xchan_name, xchan_network, xchan_photo_date, xchan_name_date)
+ values ( '%s', '%s', '%s', '%s' , '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s') ",
dbesc($xchan_hash),
dbesc($arr['guid']),
dbesc($arr['guid_sig']),
@@ -533,6 +536,7 @@ function import_xchan($arr) {
dbesc($arr['photo']),
dbesc($arr['address']),
dbesc($arr['url']),
+ dbesc($arr['connections_url']),
dbesc($arr['name']),
dbesc('zot'),
dbesc($arr['photo_updated']),