Procházet zdrojové kódy

Keep letter case consistent

myrevery před 4 roky
rodič
revize
35392e2db2

+ 1 - 1
web/bulk/restore/index.php

@@ -36,7 +36,7 @@ if ($action == 'restore') {
     } else {
     } else {
         $_SESSION['error_msg'] = implode('<br>', $output);
         $_SESSION['error_msg'] = implode('<br>', $output);
         if (empty($_SESSION['error_msg'])) {
         if (empty($_SESSION['error_msg'])) {
-            $_SESSION['error_msg'] = _('Error: hestia did not return any output.');
+            $_SESSION['error_msg'] = _('Error: Hestia did not return any output.');
         }
         }
         if ($return_var == 4) {
         if ($return_var == 4) {
             $_SESSION['error_msg'] = _('RESTORE_EXISTS');
             $_SESSION['error_msg'] = _('RESTORE_EXISTS');

+ 1 - 1
web/schedule/backup/index.php

@@ -18,7 +18,7 @@ if ($return_var == 0) {
 } else {
 } else {
     $_SESSION['error_msg'] = implode('<br>', $output);
     $_SESSION['error_msg'] = implode('<br>', $output);
     if (empty($_SESSION['error_msg'])) {
     if (empty($_SESSION['error_msg'])) {
-        $_SESSION['error_msg'] = _('Error: hestia did not return any output.');
+        $_SESSION['error_msg'] = _('Error: Hestia did not return any output.');
     }
     }
 
 
     if ($return_var == 4) {
     if ($return_var == 4) {

+ 1 - 1
web/schedule/restore/index.php

@@ -40,7 +40,7 @@ if ($return_var == 0) {
 } else {
 } else {
     $_SESSION['error_msg'] = implode('<br>', $output);
     $_SESSION['error_msg'] = implode('<br>', $output);
     if (empty($_SESSION['error_msg'])) {
     if (empty($_SESSION['error_msg'])) {
-        $_SESSION['error_msg'] = _('Error: hestia did not return any output.');
+        $_SESSION['error_msg'] = _('Error: Hestia did not return any output.');
     }
     }
     if ($return_var == 4) {
     if ($return_var == 4) {
         $_SESSION['error_msg'] = _('RESTORE_EXISTS');
         $_SESSION['error_msg'] = _('RESTORE_EXISTS');

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

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

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

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