From 564ff5715e44e81da5d0f7f1234d708390d2790c Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Fri, 2 Aug 2019 09:46:34 +0200 Subject: [PATCH] fix typo --- bin/vhost-add | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/bin/vhost-add b/bin/vhost-add index bd96cfd..04cc335 100755 --- a/bin/vhost-add +++ b/bin/vhost-add @@ -34,11 +34,11 @@ exit_if_empty "$DOMAIN" "Aborded! (DOMAIN_EMPTY)" DOMAIN_ALIASES="$(form_input -t "$TITLE" -l "Aliase(s)")" -WEB_HTTP="$(form_yes_no -t "$TITLE" -l "Support of HTTP (recommanded)")" -WEB_HTTPS="$(form_yes_no -t "$TITLE" -l "Support of HTTPS (recommanded)")" +WEB_HTTP="$(form_yes_no -t "$TITLE" -l "Support of HTTP (recommended)")" +WEB_HTTPS="$(form_yes_no -t "$TITLE" -l "Support of HTTPS (recommended)")" if [ "$WEB_HTTP" = "yes" ] && [ "$WEB_HTTPS" = "yes" ]; then - WEB_HTTPS_FORCE="$(form_yes_no -t "$TITLE" -l "Redirect HTTP to HTTPS (recommanded)")" + WEB_HTTPS_FORCE="$(form_yes_no -t "$TITLE" -l "Redirect HTTP to HTTPS (recommended)")" else WEB_HTTPS_FORCE="no" fi @@ -50,10 +50,10 @@ PHP_ENABLED="$(form_yes_no -t "$TITLE" -l "Support of PHP")" if [ "$PHP_ENABLED" = "yes" ]; then PHP_VERSION="$(form_choices -t "$TITLE" -l "Version of PHP" \ - "7.3" "PHP 7.3 (recommanded)" \ + "7.3" "PHP 7.3 (recommended)" \ "7.2" "PHP 7.2" \ "7.1" "PHP 7.1" \ - "5.6" "PHP 5.6 (not recommanded)")" + "5.6" "PHP 5.6 (not recommended)")" exit_if_empty "$PHP_VERSION" "Aborded! (PHP_VERSION_EMPTY)" fi