aboutsummaryrefslogtreecommitdiffstats
path: root/include/network.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-08-18 17:30:06 -0700
committerFriendika <info@friendika.com>2011-08-18 17:30:06 -0700
commit2df7251b349fa3ef9650cf8adb1fb680f253930d (patch)
tree979b20a30d5c4d36729fe356898dc4248b64e18d /include/network.php
parent609741573c40ef11732d8ae59317e1378f31686b (diff)
downloadvolse-hubzilla-2df7251b349fa3ef9650cf8adb1fb680f253930d.tar.gz
volse-hubzilla-2df7251b349fa3ef9650cf8adb1fb680f253930d.tar.bz2
volse-hubzilla-2df7251b349fa3ef9650cf8adb1fb680f253930d.zip
notifier issue
Diffstat (limited to 'include/network.php')
-rw-r--r--include/network.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/include/network.php b/include/network.php
index ade8a40ac..10e3648a1 100644
--- a/include/network.php
+++ b/include/network.php
@@ -697,8 +697,8 @@ function parse_xml_string($s,$strict = true) {
function add_fcontact($arr) {
$r = q("insert into fcontact ( `url`,`name`,`photo`,`request`,`nick`,`addr`,
- `notify`,`poll`,`confirm`,`network`,`alias`,`pubkey` )
- values('%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s')",
+ `notify`,`poll`,`confirm`,`network`,`alias`,`pubkey`,`updated` )
+ values('%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s')",
dbesc($arr['url']),
dbesc($arr['name']),
dbesc($arr['photo']),
@@ -710,7 +710,8 @@ function add_fcontact($arr) {
dbesc($arr['confirm']),
dbesc($arr['network']),
dbesc($arr['alias']),
- dbesc($arr['pubkey'])
+ dbesc($arr['pubkey']),
+ dbesc(datetime_convert())
);
return $r;
}