diff options
author | msquare <msquare@notrademark.de> | 2017-11-19 11:59:37 +0100 |
---|---|---|
committer | msquare <msquare@notrademark.de> | 2017-11-19 11:59:37 +0100 |
commit | d8de02db34f5b7cbf51e493b767b85ad7a58cc68 (patch) | |
tree | 6a2942bec044ac882fe3fc3a055b23da0e79e7c5 /includes | |
parent | 59cd65cb506712fc3580ca3e503b445ec84ddad5 (diff) |
fix problem with default values on registration
Diffstat (limited to 'includes')
-rw-r--r-- | includes/pages/guest_login.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/includes/pages/guest_login.php b/includes/pages/guest_login.php index 78018375..7f85f833 100644 --- a/includes/pages/guest_login.php +++ b/includes/pages/guest_login.php @@ -218,9 +218,10 @@ function guest_register() `Sprache`, `arrival_date`, `planned_arrival_date`, - `force_active` + `force_active`, + `lastLogIn` ) - VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, NOW(), ?, NULL, ?, FALSE) + VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, NOW(), ?, NULL, ?, FALSE, 0) ', [ config('theme'), |