Skip to content

Commit 78e23eb

Browse files
committed
Replace vesta with hestia.
1 parent 5d699e5 commit 78e23eb

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

web/templates/admin/add_firewall_banlist.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
<option value="DNS" <?php if ((!empty($v_chain)) && ( $v_chain == "'DNS'" )) echo 'selected'?>><?=__('DNS')?></option>
5555
<option value="MAIL" <?php if ((!empty($v_chain)) && ( $v_chain == "'MAIL'" )) echo 'selected'?>><?=__('MAIL')?></option>
5656
<option value="DB" <?php if ((!empty($v_chain)) && ( $v_chain == "'DB'" )) echo 'selected'?>><?=__('DB')?></option>
57-
<option value="VESTA" <?php if ((!empty($v_chain)) && ( $v_chain == "'VESTA'" )) echo 'selected'?>><?=__('VESTA')?></option>
57+
<option value="HESTIA" <?php if ((!empty($v_chain)) && ( $v_chain == "'HESTIA'" )) echo 'selected'?>><?=__('HESTIA')?></option>
5858
</select>
5959
</td>
6060
</tr>

web/templates/admin/edit_server.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -686,7 +686,7 @@
686686
</tr>
687687
<tr>
688688
<td class="vst-text input-label step-left">
689-
<table style="display:<?php if (empty($v_adv) && $_GET['lead'] != 'filemanager' && $_GET['lead'] != 'sftp') echo 'none';?> ;" id="vesta">
689+
<table style="display:<?php if (empty($v_adv)) echo 'none';?> ;" id="vesta">
690690
<tr>
691691
<td class="vst-text">
692692
<?php print __('Version') ?>

web/unsuspend/dns/index.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
exec (HESTIA_CMD."v-unsuspend-dns-domain ".$v_username." ".$v_domain, $output, $return_var);
2929
if ($return_var != 0) {
3030
$error = implode('<br>', $output);
31-
if (empty($error)) $error = __('Error: vesta did not return any output.');
31+
if (empty($error)) $error = __('Error: hestia did not return any output.');
3232
$_SESSION['error_msg'] = $error;
3333
}
3434
unset($output);
@@ -49,7 +49,7 @@
4949
exec (HESTIA_CMD."v-unsuspend-dns-record ".$v_username." ".$v_domain." ".$v_record_id, $output, $return_var);
5050
if ($return_var != 0) {
5151
$error = implode('<br>', $output);
52-
if (empty($error)) $error = __('Error: vesta did not return any output.');
52+
if (empty($error)) $error = __('Error: hestia did not return any output.');
5353
$_SESSION['error_msg'] = $error;
5454
}
5555
unset($output);

web/unsuspend/mail/index.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
exec (HESTIA_CMD."v-unsuspend-mail-domain ".$v_username." ".$v_domain, $output, $return_var);
2929
if ($return_var != 0) {
3030
$error = implode('<br>', $output);
31-
if (empty($error)) $error = __('Error: vesta did not return any output.');
31+
if (empty($error)) $error = __('Error: hestia did not return any output.');
3232
$_SESSION['error_msg'] = $error;
3333
}
3434
unset($output);
@@ -49,7 +49,7 @@
4949
exec (HESTIA_CMD."v-unsuspend-mail-account ".$v_username." ".$v_domain." ".$v_account, $output, $return_var);
5050
if ($return_var != 0) {
5151
$error = implode('<br>', $output);
52-
if (empty($error)) $error = __('Error: vesta did not return any output.');
52+
if (empty($error)) $error = __('Error: hestia did not return any output.');
5353
$_SESSION['error_msg'] = $error;
5454
}
5555
unset($output);

0 commit comments

Comments
 (0)