Merge pull request #4045 from marcosgdf/bug-4043

FIX #4043 Incorrect translation in error mesage in menu creation admin page
This commit is contained in:
Laurent Destailleur 2015-11-21 02:08:55 +01:00
commit 94fdff9a46

View File

@ -147,7 +147,7 @@ if ($action == 'add')
}
if (! $error && ! $_POST['url'])
{
setEventMessage($langs->trans("ErrorFieldRequired",$langs->trans("Url")), 'errors');
setEventMessage($langs->trans("ErrorFieldRequired",$langs->trans("URL")), 'errors');
$action = 'create';
$error++;
}