Bug 303830 bustage fix. Use toString() to make .split work in the single integer case r=dmose

This commit is contained in:
jminta%gmail.com 2005-08-25 02:06:32 +00:00
Родитель 4b4584396f
Коммит acd8439154
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1273,7 +1273,7 @@ calStorageCalendar.prototype = {
for (i = 0; i < rtypes.length; i++) {
var comp = "BY" + rtypes[i].toUpperCase();
if (row[rtypes[i]]) {
var rstr = row[rtypes[i]].split(",");
var rstr = row[rtypes[i]].toString().split(",");
var rarray = [];
for (var j = 0; j < rstr.length; j++) {
rarray[j] = parseInt(rstr[j]);