Skip to content

Commit

Permalink
Merge pull request #3 from jasonmunro/master
Browse files Browse the repository at this point in the history
fix for missing imap folder select dialog issue #465
  • Loading branch information
henrique-borba authored Apr 16, 2021
2 parents cee45de + f5c3585 commit 34f6d01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/imap_folders/modules.php
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ protected function output() {
$res .= '<option value="">'.$this->trans('Select an IMAP server').'</option>';
foreach ($this->get('imap_servers', array()) as $id => $server) {
$res .= '<option ';
if ($server_id === $id) {
if ($server_id == $id) {
$res .= 'selected="selected" ';
}
$res .= 'value="'.$this->html_safe($id).'">';
Expand Down

0 comments on commit 34f6d01

Please sign in to comment.