Update html.form.class.php

This commit is contained in:
Laurent Destailleur 2020-01-22 13:44:42 +01:00 committed by GitHub
parent d6766af35d
commit 443e4e2223
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5044,11 +5044,11 @@ class Form
{
if ($societe_vendeuse->id == $mysoc->id)
{
$return.= '<div class="error">'.$langs->trans("ErrorYourCountryIsNotDefined").'</div>';
$return.= '<span class="error">'.$langs->trans("ErrorYourCountryIsNotDefined").'</span>';
}
else
{
$return.= '<div class="error">'.$langs->trans("ErrorSupplierCountryIsNotDefined").'</div>';
$return.= '<span class="error">'.$langs->trans("ErrorSupplierCountryIsNotDefined").'</span>';
}
return $return;
}