Typing mistake fix

This commit is contained in:
dpeca 2016-10-06 23:36:37 +00:00
commit ba91d1fd78
2 changed files with 4 additions and 4 deletions

View file

@ -112,12 +112,12 @@ use_ssl = function() {
$('#td_smtp_encryption').html('SSL'); $('#td_smtp_encryption').html('SSL');
} }
use_no_encryption = function(domain, no_encyption) { use_no_encryption = function(domain, no_encryption) {
use_hostname(domain); use_hostname(domain);
$('#td_imap_port').html('143'); $('#td_imap_port').html('143');
$('#td_imap_encryption').html(no_encyption); $('#td_imap_encryption').html(no_encryption);
$('#td_smtp_port').html('25'); $('#td_smtp_port').html('25');
$('#td_smtp_encryption').html(no_encyption); $('#td_smtp_encryption').html(no_encryption);
} }
$(document).ready(function() { $(document).ready(function() {

View file

@ -174,7 +174,7 @@
<td><?=__('Normal password')?></td> <td><?=__('Normal password')?></td>
</tr> </tr>
</table> </table>
<br /> <br />
<table> <table>
<tr><td>&#8226; <a href="javascript:use_hostname('<?=$hostname?>');" class="generate"><?php print __('Use server hostname');?></a></td></tr> <tr><td>&#8226; <a href="javascript:use_hostname('<?=$hostname?>');" class="generate"><?php print __('Use server hostname');?></a></td></tr>
<tr><td>&#8226; <a href="javascript:use_hostname('<?=$v_domain?>');" class="generate"><?php print __('Use domain hostname');?></a></td></tr> <tr><td>&#8226; <a href="javascript:use_hostname('<?=$v_domain?>');" class="generate"><?php print __('Use domain hostname');?></a></td></tr>