fix problem with beeing informed about shift changes
This commit is contained in:
parent
5742306095
commit
df526fa2bf
|
@ -139,7 +139,7 @@ function guest_register() {
|
|||
`DECT`='" . sql_escape($dect) . "',
|
||||
`Handy`='" . sql_escape($mobile) . "',
|
||||
`email`='" . sql_escape($mail) . "',
|
||||
`email_shiftinfo`='" . sql_escape($email_shiftinfo ? 'TRUE' : 'FALSE') . "',
|
||||
`email_shiftinfo`=" . sql_bool($email_shiftinfo) . ",
|
||||
`jabber`='" . sql_escape($jabber) . "',
|
||||
`Size`='" . sql_escape($tshirt_size) . "',
|
||||
`Passwort`='" . sql_escape($password_hash) . "',
|
||||
|
|
|
@ -90,7 +90,7 @@ function user_settings() {
|
|||
`DECT`='" . sql_escape($dect) . "',
|
||||
`Handy`='" . sql_escape($mobile) . "',
|
||||
`email`='" . sql_escape($mail) . "',
|
||||
`email_shiftinfo`='" . sql_escape($email_shiftinfo ? 'TRUE' : 'FALSE') . "',
|
||||
`email_shiftinfo`=" . sql_bool($email_shiftinfo) . ",
|
||||
`jabber`='" . sql_escape($jabber) . "',
|
||||
`Size`='" . sql_escape($tshirt_size) . "',
|
||||
`Hometown`='" . sql_escape($hometown) . "',
|
||||
|
|
Loading…
Reference in New Issue