diff options
author | ivan <ivan> | 2012-01-21 03:59:16 +0000 |
---|---|---|
committer | ivan <ivan> | 2012-01-21 03:59:16 +0000 |
commit | 3e3a07a1f96d0e2f89cde0a33583c9b1276471f1 (patch) | |
tree | 910a3052a9ce43d8f982819aeb06eaf9d609f23d /rt/lib/RT/Action/CreateTickets.pm | |
parent | fb4ab1073f0d15d660c6cdc4e07afebf68ef3924 (diff) |
rt 3.8.11
Diffstat (limited to 'rt/lib/RT/Action/CreateTickets.pm')
-rw-r--r-- | rt/lib/RT/Action/CreateTickets.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rt/lib/RT/Action/CreateTickets.pm b/rt/lib/RT/Action/CreateTickets.pm index 5a1693569..fd3e77c3a 100644 --- a/rt/lib/RT/Action/CreateTickets.pm +++ b/rt/lib/RT/Action/CreateTickets.pm @@ -723,7 +723,7 @@ sub ParseLines { } } - foreach my $date qw(due starts started resolved) { + foreach my $date (qw(due starts started resolved)) { my $dateobj = RT::Date->new( $self->CurrentUser ); next unless $args{$date}; if ( $args{$date} =~ /^\d+$/ ) { @@ -1081,7 +1081,7 @@ sub UpdateWatchers { my @results; - foreach my $type qw(Requestor Cc AdminCc) { + foreach my $type (qw(Requestor Cc AdminCc)) { my $method = $type . 'Addresses'; my $oldaddr = $ticket->$method; |