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:
parent
73f9c79e4f
commit
e18749f855
2 changed files with 2 additions and 2 deletions
|
@ -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";
|
||||
|
|
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue