mirror of
https://github.com/myvesta/vesta
synced 2025-08-19 13:01:52 -07:00
Typing mistake fix
This commit is contained in:
parent
22b6ab4e2f
commit
ba91d1fd78
2 changed files with 4 additions and 4 deletions
|
@ -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() {
|
||||||
|
|
|
@ -174,7 +174,7 @@
|
||||||
<td><?=__('Normal password')?></td>
|
<td><?=__('Normal password')?></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<br />
|
<br />
|
||||||
<table>
|
<table>
|
||||||
<tr><td>• <a href="javascript:use_hostname('<?=$hostname?>');" class="generate"><?php print __('Use server hostname');?></a></td></tr>
|
<tr><td>• <a href="javascript:use_hostname('<?=$hostname?>');" class="generate"><?php print __('Use server hostname');?></a></td></tr>
|
||||||
<tr><td>• <a href="javascript:use_hostname('<?=$v_domain?>');" class="generate"><?php print __('Use domain hostname');?></a></td></tr>
|
<tr><td>• <a href="javascript:use_hostname('<?=$v_domain?>');" class="generate"><?php print __('Use domain hostname');?></a></td></tr>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue