[otrs-cvs] ITSMConfigItem/Kernel/System/ITSMConfigItem Version.pm, 1.41, 1.42

CVS commits notifications of OTRS.org cvs-log at otrs.org
Sat May 3 14:14:45 GMT 2008


Comments:
Update of /home/cvs/ITSMConfigItem/Kernel/System/ITSMConfigItem
In directory lancelot:/tmp/cvs-serv27654/Kernel/System/ITSMConfigItem

Modified Files:
	Version.pm 
Log Message:
Fixed bug# 2875 - Case sensitive CI search not possible.

Author: mh

Index: Version.pm
===================================================================
RCS file: /home/cvs/ITSMConfigItem/Kernel/System/ITSMConfigItem/Version.pm,v
retrieving revision 1.41
retrieving revision 1.42
diff -C2 -d -r1.41 -r1.42
*** Version.pm	3 May 2008 13:06:33 -0000	1.41
--- Version.pm	3 May 2008 14:14:40 -0000	1.42
***************
*** 624,631 ****
              $Self->_PrepareLikeString( \$Name );
  
!             push @SQLWhere, "vr.name LIKE '$Name'";
          }
          else {
!             push @SQLWhere, "vr.name = '$Name'";
          }
      }
--- 624,631 ----
              $Self->_PrepareLikeString( \$Name );
  
!             push @SQLWhere, "LOWER(vr.name) LIKE LOWER('$Name')";
          }
          else {
!             push @SQLWhere, "LOWER(vr.name) = LOWER('$Name')";
          }
      }


More information about the cvs-log mailing list