Raphael Schneeberger 7 лет назад
Родитель
Сommit
78e23ebae4

+ 1 - 1
web/templates/admin/add_firewall_banlist.html

@@ -54,7 +54,7 @@
                                         <option value="DNS" <?php if ((!empty($v_chain)) && ( $v_chain == "'DNS'" )) echo 'selected'?>><?=__('DNS')?></option>
                                         <option value="MAIL" <?php if ((!empty($v_chain)) && ( $v_chain == "'MAIL'" )) echo 'selected'?>><?=__('MAIL')?></option>
                                         <option value="DB" <?php if ((!empty($v_chain)) && ( $v_chain == "'DB'" )) echo 'selected'?>><?=__('DB')?></option>
-                                        <option value="VESTA" <?php if ((!empty($v_chain)) && ( $v_chain == "'VESTA'" )) echo 'selected'?>><?=__('VESTA')?></option>
+                                        <option value="HESTIA" <?php if ((!empty($v_chain)) && ( $v_chain == "'HESTIA'" )) echo 'selected'?>><?=__('HESTIA')?></option>
                                     </select>
                                 </td>
                             </tr>

+ 1 - 1
web/templates/admin/edit_server.html

@@ -686,7 +686,7 @@
                             </tr>
                             <tr>
                                 <td class="vst-text input-label step-left">
-                                    <table style="display:<?php if (empty($v_adv) && $_GET['lead'] != 'filemanager' && $_GET['lead'] != 'sftp') echo 'none';?> ;" id="vesta">
+                                    <table style="display:<?php if (empty($v_adv)) echo 'none';?> ;" id="vesta">
                                         <tr>
                                             <td class="vst-text">
                                                 <?php print __('Version') ?>

+ 2 - 2
web/unsuspend/dns/index.php

@@ -28,7 +28,7 @@ if ((!empty($_GET['domain'])) && (empty($_GET['record_id'])))  {
     exec (HESTIA_CMD."v-unsuspend-dns-domain ".$v_username." ".$v_domain, $output, $return_var);
     if ($return_var != 0) {
         $error = implode('<br>', $output);
-        if (empty($error)) $error = __('Error: vesta did not return any output.');
+        if (empty($error)) $error = __('Error: hestia did not return any output.');
         $_SESSION['error_msg'] = $error;
     }
     unset($output);
@@ -49,7 +49,7 @@ if ((!empty($_GET['domain'])) && (!empty($_GET['record_id'])))  {
     exec (HESTIA_CMD."v-unsuspend-dns-record ".$v_username." ".$v_domain." ".$v_record_id, $output, $return_var);
     if ($return_var != 0) {
         $error = implode('<br>', $output);
-        if (empty($error)) $error = __('Error: vesta did not return any output.');
+        if (empty($error)) $error = __('Error: hestia did not return any output.');
         $_SESSION['error_msg'] = $error;
     }
     unset($output);

+ 2 - 2
web/unsuspend/mail/index.php

@@ -28,7 +28,7 @@ if ((!empty($_GET['domain'])) && (empty($_GET['account'])))  {
     exec (HESTIA_CMD."v-unsuspend-mail-domain ".$v_username." ".$v_domain, $output, $return_var);
     if ($return_var != 0) {
         $error = implode('<br>', $output);
-        if (empty($error)) $error = __('Error: vesta did not return any output.');
+        if (empty($error)) $error = __('Error: hestia did not return any output.');
         $_SESSION['error_msg'] = $error;
     }
     unset($output);
@@ -49,7 +49,7 @@ if ((!empty($_GET['domain'])) && (!empty($_GET['account'])))  {
     exec (HESTIA_CMD."v-unsuspend-mail-account ".$v_username." ".$v_domain." ".$v_account, $output, $return_var);
     if ($return_var != 0) {
         $error = implode('<br>', $output);
-        if (empty($error)) $error = __('Error: vesta did not return any output.');
+        if (empty($error)) $error = __('Error: hestia did not return any output.');
         $_SESSION['error_msg'] = $error;
     }
     unset($output);