diff options
author | Friendika <info@friendika.com> | 2011-02-01 14:55:29 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-02-01 14:55:29 -0800 |
commit | 8c5c07b2654f5ff28cea1a7012198f74c5b1af03 (patch) | |
tree | 1e5e05f75614e7b001895c060f5385021c717db2 /mod/follow.php | |
parent | b4f2aac7e76d8d8a8330ade4116a015593f001a6 (diff) | |
download | volse-hubzilla-8c5c07b2654f5ff28cea1a7012198f74c5b1af03.tar.gz volse-hubzilla-8c5c07b2654f5ff28cea1a7012198f74c5b1af03.tar.bz2 volse-hubzilla-8c5c07b2654f5ff28cea1a7012198f74c5b1af03.zip |
don't try to scrape atom/rss feeds. missing param in contact store (mod_follow)
Diffstat (limited to 'mod/follow.php')
-rw-r--r-- | mod/follow.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/follow.php b/mod/follow.php index 62ba2585c..c5f6d9e3f 100644 --- a/mod/follow.php +++ b/mod/follow.php @@ -161,7 +161,7 @@ function follow_post(&$a) { // create contact record $r = q("INSERT INTO `contact` ( `uid`, `created`, `url`, `notify`, `poll`, `name`, `nick`, `photo`, `network`, `rel`, `priority`, `blocked`, `readonly`, `pending` ) - VALUES ( %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, 0, 0, 0 ) ", + VALUES ( %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, 0, 0, 0 ) ", intval(local_user()), dbesc(datetime_convert()), dbesc($profile), |