aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2018-06-13 16:28:08 -0700
committerzotlabs <mike@macgirvin.com>2018-06-13 16:28:08 -0700
commitb0b67fbcc4f340e765484641ae75bb2119830b66 (patch)
tree6d4b1fdb3996120973c5656cef5dbabe5d46b229 /Zotlabs
parenta8f179145bf572e1a9dc78e53bd68910029c2ac0 (diff)
parent254a6be277e8536ae101faa429805fcbd6382d61 (diff)
downloadvolse-hubzilla-b0b67fbcc4f340e765484641ae75bb2119830b66.tar.gz
volse-hubzilla-b0b67fbcc4f340e765484641ae75bb2119830b66.tar.bz2
volse-hubzilla-b0b67fbcc4f340e765484641ae75bb2119830b66.zip
Merge branch 'master' of ../hz into dev
Diffstat (limited to 'Zotlabs')
-rw-r--r--Zotlabs/Module/Invite.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/Invite.php b/Zotlabs/Module/Invite.php
index 0bcd1c1fa..4722a7ee5 100644
--- a/Zotlabs/Module/Invite.php
+++ b/Zotlabs/Module/Invite.php
@@ -113,7 +113,7 @@ class Invite extends \Zotlabs\Web\Controller {
$invite_code = autoname(8) . rand(1000,9999);
$nmessage = str_replace('$invite_code',$invite_code,$message);
- $r = q("INSERT INTO register (hash,created) VALUES ('%s', '%s') ",
+ $r = q("INSERT INTO register (hash,created,uid,password,lang) VALUES ('%s', '%s','','','') ",
dbesc($invite_code),
dbesc(datetime_convert())
);