Skip to content

Commit

Permalink
Fixed mail autocomplete
Browse files Browse the repository at this point in the history
  • Loading branch information
mariuszkrzaczkowski committed Jun 17, 2021
1 parent f9878d2 commit 7ab543d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions program/steps/mail/autocomplete.inc
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ if (\strlen($search)) {
$crmUserId = false;
if (isset($_SESSION['crm']['id'])) {
$crmUserId = $_SESSION['crm']['id'];
}
if ($RCMAIL->user->data['crm_user_id']) {
} elseif ($RCMAIL->user->data['crm_user_id']) {
$crmUserId = $RCMAIL->user->data['crm_user_id'];
}
if ($crmUserId) {
Expand Down
4 changes: 2 additions & 2 deletions version.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

return [
'patch' => '2021.05.27',
'version' => '0.1.28'
'patch' => '2021.06.17',
'version' => '0.1.29'
];

0 comments on commit 7ab543d

Please sign in to comment.