mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-23 15:18:58 +01:00
Fix infinite loop
This commit is contained in:
parent
fef5ad8ebd
commit
a6ebfff827
@ -455,9 +455,9 @@ var et2_widget = Class.extend({
|
||||
// Parse the legacy options
|
||||
var splitted = et2_csvSplit(_attrs[i].value);
|
||||
|
||||
for (var i = 0; i < splitted.length && i < this.legacyOptions.length; i++)
|
||||
for (var j = 0; j < splitted.length && j < this.legacyOptions.length; j++)
|
||||
{
|
||||
this.setAttribute(this.legacyOptions[i], splitted[i]);
|
||||
this.setAttribute(this.legacyOptions[j], splitted[j]);
|
||||
}
|
||||
}
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user