Fix for Bug 5156 - JavaScript error when adding list

JavaScript referenced nonexistent form name

Signed-off-by: Galen Charlton <gmcharlt@gmail.com>
This commit is contained in:
Owen Leonard 2010-08-19 10:53:44 -04:00 committed by Galen Charlton
parent 73f9c79e4f
commit e18749f855
2 changed files with 2 additions and 2 deletions

View file

@ -100,7 +100,7 @@ function placeHold () {
}
if (_alertString.length==0) {
document.Aform.submit();
document.f.submit();
} else {
alertString2 = _("Form not submitted because of the following problem(s)");
alertString2 += "\n------------------------------------------------------------------------------------\n\n";

View file

@ -122,7 +122,7 @@ $(function() {
}
if (_alertString.length==0) {
document.Aform.submit();
document.f.submit();
} else {
alertString2 = _("Form not submitted because of the following problem(s)");
alertString2 += "\n------------------------------------------------------------------------------------\n\n";