summaryrefslogtreecommitdiff
path: root/rt/lib/RT
diff options
context:
space:
mode:
authormark <mark>2011-04-15 04:01:17 +0000
committermark <mark>2011-04-15 04:01:17 +0000
commit7402bf45516dfe627239e7a573b1cddc39ddaf76 (patch)
treeb4f25ff2667b0e4f12648d3b769be0c71a5bde31 /rt/lib/RT
parent2b13f96e6771617f71c57d0906387c7ce8d8dcac (diff)
Timezone issues with this-month search, #11057
Diffstat (limited to 'rt/lib/RT')
-rw-r--r--rt/lib/RT/Date.pm25
-rw-r--r--rt/lib/RT/Tickets_Overlay.pm2
2 files changed, 17 insertions, 10 deletions
diff --git a/rt/lib/RT/Date.pm b/rt/lib/RT/Date.pm
index cc66e0f5d..e68526c07 100644
--- a/rt/lib/RT/Date.pm
+++ b/rt/lib/RT/Date.pm
@@ -286,6 +286,8 @@ sub SetToStart {
my %args = @_;
my $tz = $args{'Timezone'} || '';
my @localtime = $self->Localtime($tz);
+ #remove 'offset' so that DST is figured based on the resulting time.
+ pop @localtime;
# This is the cleanest way to implement it, I swear.
{
@@ -519,16 +521,21 @@ unix time.
=cut
-sub AddMonth {
- require Time::ParseDate;
+sub AddMonth {
my $self = shift;
- my $date = (
- Time::ParseDate::parsedate(
- '1 month',
- NOW => $self->Unix
- )
- );
- return $self->Unix($date);
+ my %args = @_;
+ my @localtime = $self->Localtime($args{'Timezone'});
+ # remove offset, as with SetToStart
+ pop @localtime;
+
+ $localtime[4]++; #month
+ if ( $localtime[4] == 12 ) {
+ $localtime[4] = 0;
+ $localtime[5]++; #year
+ }
+
+ my $new = $self->Timelocal($args{'Timezone'}, @localtime);
+ return $self->Unix($new);
}
=head2 Unix [unixtime]
diff --git a/rt/lib/RT/Tickets_Overlay.pm b/rt/lib/RT/Tickets_Overlay.pm
index 5a7e02056..ffbbc8539 100644
--- a/rt/lib/RT/Tickets_Overlay.pm
+++ b/rt/lib/RT/Tickets_Overlay.pm
@@ -548,7 +548,7 @@ sub _DateFieldLimit {
$date->SetToNow;
$date->SetToStart('month', Timezone => 'server');
$daystart = $date->ISO;
- $date->AddMonth;
+ $date->AddMonth(Timezone => 'server');
$dayend = $date->ISO;
}
elsif ( lc($value) eq 'last month' ) {