[otrs-cvs] CVS: otrs/Kernel/System/Web InterfaceAgent.pm, 1.17, 1.17.2.1 InterfaceCustomer.pm,1.16,1.16.2.1 InterfacePublic.pm,1.9,1.9.2.1

cvs-log at otrs.org cvs-log at otrs.org
Thu Jan 4 15:54:13 CET 2007


Update of /home/cvs/otrs/Kernel/System/Web
In directory lancelot:/tmp/cvs-serv26563/Kernel/System/Web

Modified Files:
      Tag: rel-2_1
	InterfaceAgent.pm InterfaceCustomer.pm InterfacePublic.pm 
Log Message:
fixed performance log info

Index: InterfaceAgent.pm
===================================================================
RCS file: /home/cvs/otrs/Kernel/System/Web/InterfaceAgent.pm,v
retrieving revision 1.17
retrieving revision 1.17.2.1
diff -C2 -r1.17 -r1.17.2.1
*** InterfaceAgent.pm	9 Nov 2006 16:48:29 -0000	1.17
--- InterfaceAgent.pm	4 Jan 2007 14:54:11 -0000	1.17.2.1
***************
*** 1,5 ****
  # --
  # Kernel/System/Web/InterfaceAgent.pm - the agent interface file (incl. auth)
! # Copyright (C) 2001-2006 OTRS GmbH, http://otrs.org/
  # --
  # $Id$
--- 1,5 ----
  # --
  # Kernel/System/Web/InterfaceAgent.pm - the agent interface file (incl. auth)
! # Copyright (C) 2001-2007 OTRS GmbH, http://otrs.org/
  # --
  # $Id$
***************
*** 672,676 ****
              # log request time
              if ($Self->{ConfigObject}->Get('PerformanceLog')) {
!                 if (!$QueryString && $Param{Action}) {
                      $QueryString = "Action=".$Param{Action};
                  }
--- 672,676 ----
              # log request time
              if ($Self->{ConfigObject}->Get('PerformanceLog')) {
!                 if ((!$QueryString && $Param{Action}) || ($QueryString !~ /Action=/)) {
                      $QueryString = "Action=".$Param{Action};
                  }

Index: InterfaceCustomer.pm
===================================================================
RCS file: /home/cvs/otrs/Kernel/System/Web/InterfaceCustomer.pm,v
retrieving revision 1.16
retrieving revision 1.16.2.1
diff -C2 -r1.16 -r1.16.2.1
*** InterfaceCustomer.pm	9 Nov 2006 16:48:30 -0000	1.16
--- InterfaceCustomer.pm	4 Jan 2007 14:54:11 -0000	1.16.2.1
***************
*** 1,5 ****
  # --
  # Kernel/System/Web/InterfaceCustomer.pm - the customer interface file (incl. auth)
! # Copyright (C) 2001-2006 OTRS GmbH, http://otrs.org/
  # --
  # $Id$
--- 1,5 ----
  # --
  # Kernel/System/Web/InterfaceCustomer.pm - the customer interface file (incl. auth)
! # Copyright (C) 2001-2007 OTRS GmbH, http://otrs.org/
  # --
  # $Id$
***************
*** 696,700 ****
              # log request time
              if ($Self->{ConfigObject}->Get('PerformanceLog')) {
!                 if (!$QueryString && $Param{Action}) {
                      $QueryString = "Action=".$Param{Action};
                  }
--- 696,700 ----
              # log request time
              if ($Self->{ConfigObject}->Get('PerformanceLog')) {
!                 if ((!$QueryString && $Param{Action}) || ($QueryString !~ /Action=/)) {
                      $QueryString = "Action=".$Param{Action};
                  }

Index: InterfacePublic.pm
===================================================================
RCS file: /home/cvs/otrs/Kernel/System/Web/InterfacePublic.pm,v
retrieving revision 1.9
retrieving revision 1.9.2.1
diff -C2 -r1.9 -r1.9.2.1
*** InterfacePublic.pm	2 Nov 2006 12:20:58 -0000	1.9
--- InterfacePublic.pm	4 Jan 2007 14:54:11 -0000	1.9.2.1
***************
*** 1,5 ****
  # --
  # Kernel/System/Web/InterfacePublic.pm - the public interface file
! # Copyright (C) 2001-2006 OTRS GmbH, http://otrs.org/
  # --
  # $Id$
--- 1,5 ----
  # --
  # Kernel/System/Web/InterfacePublic.pm - the public interface file
! # Copyright (C) 2001-2007 OTRS GmbH, http://otrs.org/
  # --
  # $Id$
***************
*** 226,230 ****
          # log request time
          if ($Self->{ConfigObject}->Get('PerformanceLog')) {
!             if (!$QueryString && $Param{Action}) {
                  $QueryString = "Action=".$Param{Action};
              }
--- 226,230 ----
          # log request time
          if ($Self->{ConfigObject}->Get('PerformanceLog')) {
!             if ((!$QueryString && $Param{Action}) || ($QueryString !~ /Action=/)) {
                  $QueryString = "Action=".$Param{Action};
              }



More information about the cvs-log mailing list