aboutsummaryrefslogtreecommitdiffstats
path: root/include/identity.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-08-21 20:05:55 -0700
committerfriendica <info@friendica.com>2013-08-21 20:05:55 -0700
commit6cea04eb440c2bb08bcb81ae13749c08d09b755c (patch)
tree1dc49fbb3b0e23afb7a3709fc54383f5b7c39fb8 /include/identity.php
parent5083aa3cbd9434b7ec63cf5bbbc2122e3da49696 (diff)
downloadvolse-hubzilla-6cea04eb440c2bb08bcb81ae13749c08d09b755c.tar.gz
volse-hubzilla-6cea04eb440c2bb08bcb81ae13749c08d09b755c.tar.bz2
volse-hubzilla-6cea04eb440c2bb08bcb81ae13749c08d09b755c.zip
progress on generic sellpage - is not yet linked from existing connect buttons and editing has not been completed
Diffstat (limited to 'include/identity.php')
-rw-r--r--include/identity.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/identity.php b/include/identity.php
index 5f210c456..1658669d6 100644
--- a/include/identity.php
+++ b/include/identity.php
@@ -182,7 +182,7 @@ function create_identity($arr) {
$newuid = $ret['channel']['channel_id'];
- $r = q("insert into xchan ( xchan_hash, xchan_guid, xchan_guid_sig, xchan_pubkey, xchan_photo_l, xchan_photo_m, xchan_photo_s, 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', '%s')",
+ $r = q("insert into xchan ( xchan_hash, xchan_guid, xchan_guid_sig, xchan_pubkey, xchan_photo_l, xchan_photo_m, xchan_photo_s, xchan_addr, xchan_url, xchan_follow, xchan_name, xchan_network, xchan_photo_date, xchan_name_date ) values ('%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s')",
dbesc($hash),
dbesc($guid),
dbesc($sig),
@@ -192,6 +192,7 @@ function create_identity($arr) {
dbesc($a->get_baseurl() . "/photo/profile/s/{$newuid}"),
dbesc($ret['channel']['channel_address'] . '@' . get_app()->get_hostname()),
dbesc(z_root() . '/channel/' . $ret['channel']['channel_address']),
+ dbesc(z_root() . '/follow?f=&url=%s'),
dbesc($ret['channel']['channel_name']),
dbesc('zot'),
dbesc(datetime_convert()),