Skip to content

Commit

Permalink
Merge pull request #1141 from Shadow243/fix-server-ui
Browse files Browse the repository at this point in the history
Fix server page ui
  • Loading branch information
Shadow243 authored Jul 31, 2024
2 parents c06f9e3 + 429dc10 commit b75662d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/imap/output_modules.php
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ protected function output() {
$disabled = '';
$pass_value = '';
}
$res .= '<div class="' . mb_strtolower($type) . '_server">';
$res .= '<div class="' . mb_strtolower($type) . '_server mb-3">';
$res .= '<form class="imap_connect" method="POST">';
$res .= '<input type="hidden" name="hm_page_key" value="'.$this->html_safe(Hm_Request_Key::generate()).'" />';
$res .= '<input type="hidden" name="imap_server_id" class="imap_server_id" value="'.$this->html_safe($server_id).'" />';
Expand Down Expand Up @@ -517,7 +517,7 @@ protected function output() {
$res .= '<input type="submit" '.(!$hidden ? 'style="display: none;" ' : '').'value="'.$this->trans('Unhide').'" class="unhide_imap_connection btn btn-outline-secondary btn-sm me-2" />';

$res .= '<input type="hidden" value="ajax_imap_debug" name="hm_ajax_hook" />';
$res .= '</div></div></div></form></div>';
$res .= '</div></div></div></form>';
}
$res .= '';
return $res;
Expand Down

0 comments on commit b75662d

Please sign in to comment.