Bug 325361: When an event is scheduled at midnight of a given day of the month, one email is sent *each* hour of that day - Patch by Frédéric Buclin <LpSolit@gmail.com> r=wicked a=justdave

git-svn-id: svn://10.0.0.236/trunk@188763 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
lpsolit%gmail.com
2006-02-02 19:09:01 +00:00
parent 2e9007e686
commit a2ca477414
2 changed files with 6 additions and 2 deletions

View File

@@ -220,8 +220,8 @@ if ($cgi->param('update')) {
else {
my $o_day = $cgi->param("orig_day_$sid") || '';
my $day = $cgi->param("day_$sid") || '';
my $o_time = $cgi->param("orig_time_$sid") || '';
my $time = $cgi->param("time_$sid") || '';
my $o_time = $cgi->param("orig_time_$sid") || 0;
my $time = $cgi->param("time_$sid") || 0;
my $o_mailto = $cgi->param("orig_mailto_$sid") || '';
my $mailto = $cgi->param("mailto_$sid") || '';
my $o_mailto_type = $cgi->param("orig_mailto_type_$sid") || 0;

View File

@@ -564,6 +564,10 @@ sub reset_timer {
$sth->execute($schedule_id);
my ($run_day, $run_time) = $sth->fetchrow_array;
# It may happen that the run_time field is NULL or blank due to
# a bug in editwhines.cgi when this field was initially 0.
$run_time ||= 0;
my $run_today = 0;
my $minute_offset = 0;