[otrs-cvs] CVS: otrs/Kernel/System StdResponse.pm,1.12,1.13

cvs-log at otrs.org cvs-log at otrs.org
Fri Jul 7 10:42:19 CEST 2006


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

Modified Files:
	StdResponse.pm 
Log Message:
fixed sql bug (oracle db) 

Index: StdResponse.pm
===================================================================
RCS file: /home/cvs/otrs/Kernel/System/StdResponse.pm,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -r1.12 -r1.13
*** StdResponse.pm	20 Dec 2005 23:32:06 -0000	1.12
--- StdResponse.pm	7 Jul 2006 07:42:17 -0000	1.13
***************
*** 1,5 ****
  # --
  # Kernel/System/StdResponse.pm - lib for std responses
! # Copyright (C) 2001-2005 Martin Edenhofer <martin+code at otrs.org>
  # --
  # $Id$
--- 1,5 ----
  # --
  # Kernel/System/StdResponse.pm - lib for std responses
! # Copyright (C) 2001-2006 Martin Edenhofer <martin+code at otrs.org>
  # --
  # $Id$
***************
*** 68,72 ****
          $Self->{DBObject}->Prepare(
              SQL => "SELECT id FROM standard_response WHERE ".
!               "name = '$Param{Name}' AND text = '$Param{Response}'",
          );
          while (my @Row = $Self->{DBObject}->FetchrowArray()) {
--- 68,72 ----
          $Self->{DBObject}->Prepare(
              SQL => "SELECT id FROM standard_response WHERE ".
!               "name = '$Param{Name}' AND text like '$Param{Response}'",
          );
          while (my @Row = $Self->{DBObject}->FetchrowArray()) {



More information about the cvs-log mailing list