From 483c6ef25773f726edcb24c1eb663a009895f7d7 Mon Sep 17 00:00:00 2001 From: Regis Houssin Date: Wed, 2 Jan 2019 14:43:54 +0100 Subject: [PATCH] FIX wrong field name for WEBSITE_VIRTUALHOST Signed-off-by: Regis Houssin --- htdocs/website/index.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/htdocs/website/index.php b/htdocs/website/index.php index bb9d6ae43e0..d14643f8420 100644 --- a/htdocs/website/index.php +++ b/htdocs/website/index.php @@ -2333,6 +2333,7 @@ if ($action == 'createsite') if (GETPOST('WEBSITE_REF')) $siteref=GETPOST('WEBSITE_REF','alpha'); if (GETPOST('WEBSITE_DESCRIPTION')) $sitedesc=GETPOST('WEBSITE_DESCRIPTION','alpha'); + if (GETPOST('WEBSITE_VIRTUALHOST')) $sitevhost=GETPOST('WEBSITE_VIRTUALHOST','alpha'); print ''; print $langs->trans('Ref'); @@ -2354,7 +2355,7 @@ if ($action == 'createsite') print $form->textwithpicto($langs->trans('Virtualhost'), $htmltext, 1, 'help', '', 0, 2, 'tooltipvirtual'); print ''; - print ''; + print ''; print '';