Fixing bug 122673, recur forever events broken.

This commit is contained in:
mikep%oeone.com 2002-01-31 19:40:44 +00:00
Родитель bb7dd6adb7
Коммит 5cb5096276
2 изменённых файлов: 4 добавлений и 4 удалений

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

@ -313,7 +313,7 @@ function onOKCommand()
}
gEvent.recur = getFieldValue( "repeat-checkbox", "checked" );
gEvent.recurUnits = getFieldValue( "repeat-length-units", "value" );
gEvent.recurForever = getFieldValue( "repeat-forever-radio", "checked" );
gEvent.recurForever = getFieldValue( "repeat-forever-radio", "selected" );
gEvent.recurInterval = getFieldValue( "repeat-length-field" );
if( gEvent.recurInterval == 0 )
@ -328,7 +328,7 @@ function onOKCommand()
if( gEvent.recur == true )
{
//check that the repeat end time is later than the end time
if( recurEndDate.getTime() < gEvent.end.getTime() && gEvent.recurForever != false )
if( recurEndDate.getTime() < gEvent.end.getTime() && gEvent.recurForever == false )
{
alert( neRecurErrorAlertMessage );
return( false );

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

@ -313,7 +313,7 @@ function onOKCommand()
}
gEvent.recur = getFieldValue( "repeat-checkbox", "checked" );
gEvent.recurUnits = getFieldValue( "repeat-length-units", "value" );
gEvent.recurForever = getFieldValue( "repeat-forever-radio", "checked" );
gEvent.recurForever = getFieldValue( "repeat-forever-radio", "selected" );
gEvent.recurInterval = getFieldValue( "repeat-length-field" );
if( gEvent.recurInterval == 0 )
@ -328,7 +328,7 @@ function onOKCommand()
if( gEvent.recur == true )
{
//check that the repeat end time is later than the end time
if( recurEndDate.getTime() < gEvent.end.getTime() && gEvent.recurForever != false )
if( recurEndDate.getTime() < gEvent.end.getTime() && gEvent.recurForever == false )
{
alert( neRecurErrorAlertMessage );
return( false );