Fixed incorrect loop variable.

This commit is contained in:
Endi S. Dewata
2011-01-14 01:06:58 +07:00
parent d92f5bf8bb
commit 26d1de2d27

View File

@@ -70,7 +70,7 @@ function ipa_rule_details_section(spec){
span.append('<br/>');
}
for (var j=0; i<that.tables.length; i++) {
for (var j=0; j<that.tables.length; j++) {
var table = that.tables[j];
param_info = ipa_get_param_info(that.entity_name, table.field_name);