[otrs-cvs] CVS: otrs/Kernel/Modules AgentTicketQueue.pm,1.17,1.18

cvs-log at otrs.org cvs-log at otrs.org
Thu Aug 24 15:40:47 CEST 2006


Update of /home/cvs/otrs/Kernel/Modules
In directory lancelot:/tmp/cvs-serv22591/Kernel/Modules

Modified Files:
	AgentTicketQueue.pm 
Log Message:
fix typos

Index: AgentTicketQueue.pm
===================================================================
RCS file: /home/cvs/otrs/Kernel/Modules/AgentTicketQueue.pm,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -r1.17 -r1.18
*** AgentTicketQueue.pm	31 Jul 2006 13:26:29 -0000	1.17
--- AgentTicketQueue.pm	24 Aug 2006 12:40:45 -0000	1.18
***************
*** 1,5 ****
  # --
  # Kernel/Modules/AgentTicketQueue.pm - the queue view of all tickets
! # Copyright (C) 2001-2006 Martin Edenhofer <martin+code at otrs.org>
  # --
  # $Id$
--- 1,5 ----
  # --
  # Kernel/Modules/AgentTicketQueue.pm - the queue view of all tickets
! # Copyright (C) 2001-2006 OTRS GmbH, http://otrs.org/
  # --
  # $Id$
***************
*** 269,280 ****
  #            " ORDER BY st.ticket_priority_id DESC, st.freetime1 ASC";
  #            " ORDER BY st.ticket_priority_id DESC, st.create_time_unix $Order";
!           $Self->{DBObject}->Prepare(SQL => $SQL, Limit => $Self->{Limit});
!           my $Counter = 0;
!           while (my @Row = $Self->{DBObject}->FetchrowArray()) {
!               if ($Counter >= ($Self->{Start}-1)) {
!                   push (@ViewableTickets, $Row[0]);
!               }
!               $Counter++;
!           }
      }
      # --
--- 269,280 ----
  #            " ORDER BY st.ticket_priority_id DESC, st.freetime1 ASC";
  #            " ORDER BY st.ticket_priority_id DESC, st.create_time_unix $Order";
!         $Self->{DBObject}->Prepare(SQL => $SQL, Limit => $Self->{Limit});
!         my $Counter = 0;
!         while (my @Row = $Self->{DBObject}->FetchrowArray()) {
!             if ($Counter >= ($Self->{Start}-1)) {
!                 push (@ViewableTickets, $Row[0]);
!             }
!             $Counter++;
!         }
      }
      # --



More information about the cvs-log mailing list