rfranc - 2007-11-04

Logged In: YES
user_id=1879365
Originator: NO

A temporary fix around this would be adding a line of javascript in the
ReportSchedule.vm file.

At line 70, you should have <input type="text" id="startHour"
name="startHour" value="$!startHour" size="2" maxLength="2" /> :
After this line, put in this code:

<script language="Javascript">
/*Added to catch case where hour returned is 0 (12 am or pm)*/
if(document.getElementById("startHour").value == 0)
document.getElementById("startHour").value = 12;
</script>