summaryrefslogtreecommitdiffstats
path: root/install
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2011-01-14 01:06:58 +0700
committerEndi S. Dewata <edewata@redhat.com>2011-01-13 13:09:00 -0500
commit26d1de2d27cc9bb916d9f594f718561e25175979 (patch)
tree47c03598da926ebca7347f8ee4d20780906cf0bd /install
parentd92f5bf8bb476bd2c90262db9b44ac659b61ecf5 (diff)
downloadfreeipa-26d1de2d27cc9bb916d9f594f718561e25175979.tar.gz
freeipa-26d1de2d27cc9bb916d9f594f718561e25175979.tar.xz
freeipa-26d1de2d27cc9bb916d9f594f718561e25175979.zip
Fixed incorrect loop variable.
Diffstat (limited to 'install')
-rwxr-xr-xinstall/static/rule.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/install/static/rule.js b/install/static/rule.js
index 58ad3b80b..5abb08a99 100755
--- a/install/static/rule.js
+++ b/install/static/rule.js
@@ -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);