From c1151076773cd5bc6cde567ba685f703acbbbb00 Mon Sep 17 00:00:00 2001 From: Alvaro Campos Date: Tue, 25 Oct 2011 18:35:35 -0400 Subject: [PATCH] BUG 7906 solved JavaScript function submitForm() working. --- gulliver/js/common/core/common.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulliver/js/common/core/common.js b/gulliver/js/common/core/common.js index 43bb1bbd9..fe3a208be 100755 --- a/gulliver/js/common/core/common.js +++ b/gulliver/js/common/core/common.js @@ -1116,7 +1116,7 @@ function setFocusById (id) { } function submitForm () { - document.webform.submit(); + document.forms[0].submit(); return; }