Bug 462048 - Monthly recurrence rule "Last Day Of Month" breaks Custom Recurrence Dialog upon editing. r=berend

This commit is contained in:
Martin Schroeder 2008-12-01 12:44:16 +01:00
Родитель 7d6fb7ec5a
Коммит 04395941ae
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -21,6 +21,7 @@
- Contributor(s):
- Michael Buettner <michael.buettner@sun.com>
- Berend Cornelius <berend.cornelius@sun.com>
- Martin Schroeder <mschroeder@mozilla.x-home.org>
-
- Alternatively, the contents of this file may be used under the terms of
- either the GNU General Public License Version 2 or later (the "GPL"), or
@ -268,7 +269,8 @@
}
}
for (i = 0; i < val.length; i++) {
days[val[i]-1].setAttribute("checked", "true");
let index = (val[i] < 0 ? val[i] + days.length : val[i] - 1);
days[index].setAttribute("checked", "true");
}
return val;
]]></setter>