Index: ssts-web/src/main/webapp/js/common.js =================================================================== diff -u -r15698 -r15730 --- ssts-web/src/main/webapp/js/common.js (.../common.js) (revision 15698) +++ ssts-web/src/main/webapp/js/common.js (.../common.js) (revision 15730) @@ -2430,9 +2430,9 @@ function getRowsPropertiesWithComma(rows,property,separator) { var properties = ""; separator = separator || ','; - for (i = 0, length = rows.length;i < length ; i++){ + for (i = 0, rowLen = rows.length;i < rowLen ; i++){ properties += rows[i].get(property); - if (i != length - 1){ + if (i != rowLen - 1){ properties += separator; } }