[otrs-cvs] otrs/Kernel/System/PostMaster FollowUp.pm,1.53,1.54

cvs-log at otrs.org cvs-log at otrs.org
Fri Apr 13 00:18:22 GMT 2007


Comments:
Update of /home/cvs/otrs/Kernel/System/PostMaster
In directory lancelot:/tmp/cvs-serv14376/Kernel/System/PostMaster

Modified Files:
	FollowUp.pm 
Log Message:
Fixed bug# 1741 - "PostmasterFollowUpStateClosed" buggy on follow up actions.

Author: martin

Index: FollowUp.pm
===================================================================
RCS file: /home/cvs/otrs/Kernel/System/PostMaster/FollowUp.pm,v
retrieving revision 1.53
retrieving revision 1.54
diff -C2 -d -r1.53 -r1.54
*** FollowUp.pm	20 Mar 2007 15:18:40 -0000	1.53
--- FollowUp.pm	13 Apr 2007 00:18:17 -0000	1.54
***************
*** 99,103 ****
      # set state
      my $State = $Self->{ConfigObject}->Get('PostmasterFollowUpState') || 'open';
!     if ($Ticket{StateType} !~ /^close/ && $Self->{ConfigObject}->Get('PostmasterFollowUpStateClosed')) {
          $State = $Self->{ConfigObject}->Get('PostmasterFollowUpStateClosed');
      }
--- 99,103 ----
      # set state
      my $State = $Self->{ConfigObject}->Get('PostmasterFollowUpState') || 'open';
!     if ($Ticket{StateType} =~ /^close/ && $Self->{ConfigObject}->Get('PostmasterFollowUpStateClosed')) {
          $State = $Self->{ConfigObject}->Get('PostmasterFollowUpStateClosed');
      }


More information about the cvs-log mailing list