1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-25 17:41:25 +02:00
git-svn-id: file:///svn/phpbb/trunk@2320 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
James Atkinson
2002-03-18 18:42:25 +00:00
parent 73f1986816
commit 4350c9b937
2 changed files with 4 additions and 2 deletions

View File

@@ -12,11 +12,11 @@ function checkForm(formObj) {
formErrors = false;
if (formObj.message.value.length < 2) {
formErrors = "You must enter a message!";
formErrors = "{L_EMPTY_MESSAGE_EMAIL}";
}
else if ( formObj.subject.value.length < 2)
{
formErrors = "You must enter a subject!";
formErrors = "{L_EMPTY_SUBJECT_EMAIL}";
}
if (formErrors) {