Skip to content

Commit ba91d1f

Browse files
committed
Typing mistake fix
1 parent 22b6ab4 commit ba91d1f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

web/js/pages/add_mail_acc.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,12 +112,12 @@ use_ssl = function() {
112112
$('#td_smtp_encryption').html('SSL');
113113
}
114114

115-
use_no_encryption = function(domain, no_encyption) {
115+
use_no_encryption = function(domain, no_encryption) {
116116
use_hostname(domain);
117117
$('#td_imap_port').html('143');
118-
$('#td_imap_encryption').html(no_encyption);
118+
$('#td_imap_encryption').html(no_encryption);
119119
$('#td_smtp_port').html('25');
120-
$('#td_smtp_encryption').html(no_encyption);
120+
$('#td_smtp_encryption').html(no_encryption);
121121
}
122122

123123
$(document).ready(function() {

web/templates/admin/add_mail_acc.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@
174174
<td><?=__('Normal password')?></td>
175175
</tr>
176176
</table>
177-
<br />
177+
<br />
178178
<table>
179179
<tr><td>&#8226; <a href="javascript:use_hostname('<?=$hostname?>');" class="generate"><?php print __('Use server hostname');?></a></td></tr>
180180
<tr><td>&#8226; <a href="javascript:use_hostname('<?=$v_domain?>');" class="generate"><?php print __('Use domain hostname');?></a></td></tr>

0 commit comments

Comments
 (0)