File tree 1 file changed +0
-4
lines changed
1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -1805,11 +1805,9 @@ sub update {
1805
1805
if ($startHour > 23) {
1806
1806
$startHour = 0;
1807
1807
my $startDate = exists $properties -> {startDate } ? $properties -> {startDate } : $self -> get(' startDate' );
1808
- $session -> log -> warn (' startDate: ' . $startDate );
1809
1808
my $startDt = WebGUI::DateTime-> new($session , $startDate );
1810
1809
$startDt -> add(days => 1);
1811
1810
$properties -> {startDate } = $startDt -> toMysqlDate;
1812
- $session -> log -> warn (' startDate: ' . $properties -> {startDate });
1813
1811
$startSecond = ' 00' if ! $startSecond ;
1814
1812
$properties -> {startTime } = sprintf ' %02d:%02d:%02d' , $startHour , $startMinute , $startSecond ;
1815
1813
}
@@ -1819,11 +1817,9 @@ sub update {
1819
1817
if ($endHour > 23) {
1820
1818
$endHour = 0;
1821
1819
my $endDate = exists $properties -> {endDate } ? $properties -> {endDate } : $self -> get(' endDate' );
1822
- $session -> log -> warn (' endDate: ' . $endDate );
1823
1820
my $endDt = WebGUI::DateTime-> new($session , $endDate );
1824
1821
$endDt -> add(days => 1);
1825
1822
$properties -> {endDate } = $endDt -> toMysqlDate;
1826
- $session -> log -> warn (' endDate: ' . $properties -> {endDate });
1827
1823
$endSecond = ' 00' if ! $endSecond ;
1828
1824
$properties -> {endTime } = sprintf ' %02d:%02d:%02d' , $endHour , $endMinute , $endSecond ;
1829
1825
}
You can’t perform that action at this time.
0 commit comments