Browse Source
Fix selecting the initial value
Signed-off-by: Joas Schilling <coding@schilljs.com>
pull/6338/head
Joas Schilling
4 years ago
No known key found for this signature in database
GPG Key ID: 7076EA9751AACDDA
2 changed files with
2 additions and
0 deletions
-
lib/Model/AttendeeMapper.php
-
lib/Model/SelectHelper.php
|
|
|
@ -287,6 +287,7 @@ class AttendeeMapper extends QBMapper { |
|
|
|
'participant_type' => (int) $row['participant_type'], |
|
|
|
'favorite' => (bool) $row['favorite'], |
|
|
|
'notification_level' => (int) $row['notification_level'], |
|
|
|
'notification_calls' => (int) $row['notification_calls'], |
|
|
|
'last_joined_call' => (int) $row['last_joined_call'], |
|
|
|
'last_read_message' => (int) $row['last_read_message'], |
|
|
|
'last_mention_message' => (int) $row['last_mention_message'], |
|
|
|
|
|
|
|
@ -68,6 +68,7 @@ class SelectHelper { |
|
|
|
->addSelect($alias . 'participant_type') |
|
|
|
->addSelect($alias . 'favorite') |
|
|
|
->addSelect($alias . 'notification_level') |
|
|
|
->addSelect($alias . 'notification_calls') |
|
|
|
->addSelect($alias . 'last_joined_call') |
|
|
|
->addSelect($alias . 'last_read_message') |
|
|
|
->addSelect($alias . 'last_mention_message') |
|
|
|
|