undeclared variables

This commit is contained in:
Sebastian Mendel
2005-11-18 13:34:08 +00:00
parent 3115a8de77
commit a0b56956a0
2 changed files with 6 additions and 4 deletions

View File

@@ -23,7 +23,8 @@ $Source$
* fixed minimum_common for css files
* header.inc.php: missing ; after &quot
* libraries/function.js::pdfPaperSize()
- javascript warning: function does not always return a vlaue
- function does not always return a vlaue
- undeclared variables
2005-11-17 Marc Delisle <lem9@users.sourceforge.net>
* Documentation.html: patch #1353283, thanks to Isaac Bennetch

View File

@@ -357,11 +357,12 @@ function checkTableEditForm(theForm, fieldsCnt)
// on the form but has not completed at least one field name
var atLeastOneField = 0;
var i, elm, elm2, elm3, val, id;
for (i=0; i<fieldsCnt; i++)
{
var id = "field_" + i + "_2";
var elm = getElement(id);
id = "field_" + i + "_2";
elm = getElement(id);
if (elm.value == 'VARCHAR' || elm.value == 'CHAR') {
elm2 = getElement("field_" + i + "_3");
val = parseInt(elm2.value);
@@ -375,7 +376,7 @@ function checkTableEditForm(theForm, fieldsCnt)
}
if (atLeastOneField == 0) {
var id = "field_" + i + "_1";
id = "field_" + i + "_1";
if (!emptyCheckTheField(theForm, id)) {
atLeastOneField = 1;
}