[otrs-cvs] CVS: otrs/Kernel/System/Ticket/IndexAccelerator StaticDB.pm,1.31,1.31.2.1 RuntimeDB.pm,1.32,1.32.2.1

cvs-log at otrs.org cvs-log at otrs.org
Sat Jun 17 02:43:46 CEST 2006


Update of /home/cvs/otrs/Kernel/System/Ticket/IndexAccelerator
In directory lancelot:/tmp/cvs-serv19058/Kernel/System/Ticket/IndexAccelerator

Modified Files:
      Tag: rel-2_0
	StaticDB.pm RuntimeDB.pm 
Log Message:
Fixed bug #1240 - Tickets not shown in "New messages" if Auto Response "Reply" is active


Index: StaticDB.pm
===================================================================
RCS file: /home/cvs/otrs/Kernel/System/Ticket/IndexAccelerator/StaticDB.pm,v
retrieving revision 1.31
retrieving revision 1.31.2.1
diff -C2 -r1.31 -r1.31.2.1
*** StaticDB.pm	31 Oct 2005 10:09:19 -0000	1.31
--- StaticDB.pm	16 Jun 2006 23:43:44 -0000	1.31.2.1
***************
*** 1,5 ****
  # --
  # Kernel/System/Ticket/IndexAccelerator/StaticDB.pm - static db queue ticket index module
! # Copyright (C) 2001-2005 Martin Edenhofer <martin+code at otrs.org>
  # --
  # $Id$
--- 1,5 ----
  # --
  # Kernel/System/Ticket/IndexAccelerator/StaticDB.pm - static db queue ticket index module
! # Copyright (C) 2001-2006 Martin Edenhofer <martin+code at otrs.org>
  # --
  # $Id$
***************
*** 501,506 ****
          if (!$Param{"ID$Row[2]"}) {
            $Data{'All'}++;
!           # put all tickets to ToDo where last sender type is customer or ! UserID
!           if ($Row[3] ne $Param{UserID} || $Row[1] eq 'customer') {
                $Data{'New'}++;
            }
--- 501,506 ----
          if (!$Param{"ID$Row[2]"}) {
            $Data{'All'}++;
!           # put all tickets to ToDo where last sender type is customer / system or ! UserID
!           if ($Row[3] ne $Param{UserID} || $Row[1] eq 'customer' || $Row[1] eq 'system') {
                $Data{'New'}++;
            }

Index: RuntimeDB.pm
===================================================================
RCS file: /home/cvs/otrs/Kernel/System/Ticket/IndexAccelerator/RuntimeDB.pm,v
retrieving revision 1.32
retrieving revision 1.32.2.1
diff -C2 -r1.32 -r1.32.2.1
*** RuntimeDB.pm	31 Oct 2005 10:09:19 -0000	1.32
--- RuntimeDB.pm	16 Jun 2006 23:43:44 -0000	1.32.2.1
***************
*** 2,6 ****
  # Kernel/System/Ticket/IndexAccelerator/RuntimeDB.pm - realtime database
  # queue ticket index module
! # Copyright (C) 2001-2005 Martin Edenhofer <martin+code at otrs.org>
  # --
  # $Id$
--- 2,6 ----
  # Kernel/System/Ticket/IndexAccelerator/RuntimeDB.pm - realtime database
  # queue ticket index module
! # Copyright (C) 2001-2006 Martin Edenhofer <martin+code at otrs.org>
  # --
  # $Id$
***************
*** 219,224 ****
          if (!$Param{"ID$Row[2]"}) {
            $Data{'All'}++;
!           # put all tickets to ToDo where last sender type is customer or ! UserID
!           if ($Row[3] ne $Param{UserID} || $Row[1] eq 'customer') {
                $Data{'New'}++;
            }
--- 219,224 ----
          if (!$Param{"ID$Row[2]"}) {
            $Data{'All'}++;
!           # put all tickets to ToDo where last sender type is customer / system or ! UserID
!           if ($Row[3] ne $Param{UserID} || $Row[1] eq 'customer' || $Row[1] eq 'system') {
                $Data{'New'}++;
            }



More information about the cvs-log mailing list