aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/templates
diff options
context:
space:
mode:
authorJames Atkinson <thefinn@users.sourceforge.net>2002-03-18 18:42:25 +0000
committerJames Atkinson <thefinn@users.sourceforge.net>2002-03-18 18:42:25 +0000
commit4350c9b937090fba7c4b123dec6492bc0fbd6273 (patch)
treedbdecc922e9ad8c0d98b5e0757885d5c910f0b26 /phpBB/templates
parent73f1986816193d24042352d51b8ebe48f892d85c (diff)
downloadforums-4350c9b937090fba7c4b123dec6492bc0fbd6273.tar
forums-4350c9b937090fba7c4b123dec6492bc0fbd6273.tar.gz
forums-4350c9b937090fba7c4b123dec6492bc0fbd6273.tar.bz2
forums-4350c9b937090fba7c4b123dec6492bc0fbd6273.tar.xz
forums-4350c9b937090fba7c4b123dec6492bc0fbd6273.zip
Fixed bug #528267
git-svn-id: file:///svn/phpbb/trunk@2320 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/templates')
-rw-r--r--phpBB/templates/subSilver/profile_send_email.tpl4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/templates/subSilver/profile_send_email.tpl b/phpBB/templates/subSilver/profile_send_email.tpl
index 9e5a0d37c9..9a2b4590ca 100644
--- a/phpBB/templates/subSilver/profile_send_email.tpl
+++ b/phpBB/templates/subSilver/profile_send_email.tpl
@@ -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) {