X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=rt%2Flib%2FRT%2FInterface%2FWeb%2FQueryBuilder%2FTree.pm;fp=rt%2Flib%2FRT%2FInterface%2FWeb%2FQueryBuilder%2FTree.pm;h=e2ec1e58d8c530854bea2c758bf80b72b4a96cba;hb=43a06151e47d2c59b833cbd8c26d97865ee850b6;hp=493ab444dbe3a18ccd7f8e933216b70a5a500c3a;hpb=6587f6ba7d047ddc1686c080090afe7d53365bd4;p=freeside.git diff --git a/rt/lib/RT/Interface/Web/QueryBuilder/Tree.pm b/rt/lib/RT/Interface/Web/QueryBuilder/Tree.pm index 493ab444d..e2ec1e58d 100755 --- a/rt/lib/RT/Interface/Web/QueryBuilder/Tree.pm +++ b/rt/lib/RT/Interface/Web/QueryBuilder/Tree.pm @@ -2,7 +2,7 @@ # # COPYRIGHT: # -# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC +# This software is Copyright (c) 1996-2012 Best Practical Solutions, LLC # # # (Except where explicitly superseded by other copyright notices) @@ -260,20 +260,24 @@ sub ParseSQL { my $class; if ( exists $lcfield{ lc $main_key } ) { - $class = $field{ $main_key }->[0]; $key =~ s/^[^.]+/ $lcfield{ lc $main_key } /e; + ($main_key) = split /[.]/, $key; # make the case right + $class = $field{ $main_key }->[0]; } unless( $class ) { push @results, [ $args{'CurrentUser'}->loc("Unknown field: [_1]", $key), -1 ] } - $value =~ s/'/\\'/g; if ( lc $op eq 'is' || lc $op eq 'is not' ) { $value = 'NULL'; # just fix possible mistakes here } elsif ( $value !~ /^[+-]?[0-9]+$/ ) { + $value =~ s/(['\\])/\\$1/g; $value = "'$value'"; } - $key = "'$key'" if $key =~ /^CF./; + + if ($key =~ s/(['\\])/\\$1/g or $key =~ /\s/) { + $key = "'$key'"; + } my $clause = { Key => $key, Op => $op, Value => $value }; $node->addChild( __PACKAGE__->new( $clause ) );