[otrs-cvs] otrs/Kernel/System AuthSession.pm,1.35,1.36

CVS commits notifications of OTRS.org cvs-log at otrs.org
Fri Apr 25 10:29:39 GMT 2008


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

Modified Files:
	AuthSession.pm 
Log Message:
Removed brackets from push() functions

Author: tr

Index: AuthSession.pm
===================================================================
RCS file: /home/cvs/otrs/Kernel/System/AuthSession.pm,v
retrieving revision 1.35
retrieving revision 1.36
diff -C2 -d -r1.35 -r1.36
*** AuthSession.pm	9 Apr 2008 00:31:20 -0000	1.35
--- AuthSession.pm	25 Apr 2008 10:29:34 -0000	1.36
***************
*** 233,242 ****
          # delete invalid session time
          if ( $ValidTime <= 0 ) {
!             push( @ExpiredSession, $SessionID );
          }
  
          # delete invalid idle session time
          elsif ( $ValidIdleTime <= 0 ) {
!             push( @ExpiredIdle, $SessionID );
          }
      }
--- 233,242 ----
          # delete invalid session time
          if ( $ValidTime <= 0 ) {
!             push @ExpiredSession, $SessionID;
          }
  
          # delete invalid idle session time
          elsif ( $ValidIdleTime <= 0 ) {
!             push @ExpiredIdle, $SessionID;
          }
      }


More information about the cvs-log mailing list