diff options
author | friendica <info@friendica.com> | 2012-01-31 23:54:53 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-01-31 23:54:53 -0800 |
commit | c0c0f2dc151300f7578cf77a059403369edba07d (patch) | |
tree | d6731b4a052e7f055bd79b1ebde81d22e26a7401 /mod | |
parent | 86c0eac27d4ed2a454f752615a1b446cf2acd2b2 (diff) | |
download | volse-hubzilla-c0c0f2dc151300f7578cf77a059403369edba07d.tar.gz volse-hubzilla-c0c0f2dc151300f7578cf77a059403369edba07d.tar.bz2 volse-hubzilla-c0c0f2dc151300f7578cf77a059403369edba07d.zip |
add closeness attribute
Diffstat (limited to 'mod')
-rwxr-xr-x | mod/register.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/register.php b/mod/register.php index 89f561642..388b3e250 100755 --- a/mod/register.php +++ b/mod/register.php @@ -278,8 +278,8 @@ function register_post(&$a) { return; } $r = q("INSERT INTO `contact` ( `uid`, `created`, `self`, `name`, `nick`, `photo`, `thumb`, `micro`, `blocked`, `pending`, `url`, `nurl`, - `request`, `notify`, `poll`, `confirm`, `poco`, `name-date`, `uri-date`, `avatar-date` ) - VALUES ( %d, '%s', 1, '%s', '%s', '%s', '%s', '%s', 0, 0, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s' ) ", + `request`, `notify`, `poll`, `confirm`, `poco`, `name-date`, `uri-date`, `avatar-date`, `closeness` ) + VALUES ( %d, '%s', 1, '%s', '%s', '%s', '%s', '%s', 0, 0, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', 0 ) ", intval($newuid), datetime_convert(), dbesc($username), |