Joined: 12/06/2003 19:26:08
Messages: 4292
Location: Bristol, UK
Offline
Sorry ignore that I misread your question.
Off the top of my head open form.php in templates and find
document.book.gb_comment.value=trim(document.book.gb_comment.value);
if(document.book.gb_name.value == "") {
alert("You forgot to fill in the Name field. Please correct it and re-submit.");
document.book.gb_name.focus();
return false;
}
Replace with
document.book.gb_captcha.value=trim(document.book.gb_captcha.value);
document.book.gb_comment.value=trim(document.book.gb_comment.value);
if(document.book.gb_name.value == "") {
alert("You forgot to fill in the Name field. Please correct it and re-submit.");
document.book.gb_name.focus();
return false;
}
if(document.book.gb_captcha.value == "") {
alert("You forgot to fill in the Name field. Please correct it and re-submit.");
document.book.gb_captcha.focus();
return false;
}
Carbonize I am not the maker of the Advanced Guestbook