Closed (fixed)
Project:
Apache Solr Search
Version:
6.x-1.x-dev
Component:
Code
Priority:
Critical
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
26 Jan 2009 at 16:32 UTC
Updated:
10 Feb 2009 at 14:10 UTC
Jump to comment: Most recent file
Comments
Comment #1
pwolanin commentedIt looks like we should already handle this?
Comment #2
pwolanin commentedok, there is some breakage when building the query - echoing the actual query it looks like:
&fq=fieldname:"very&version=1.2&wt=jsonwhen it shoudl be:
&fq=fieldname:"very bad"&version=1.2&wt=jsonComment #3
pwolanin commentedAh rats - somewhere we are getting encoding - the pattern never matches!
I see the actual string is:
fieldname:"very bad"Comment #4
pwolanin commentedaaargh:
Comment #5
pwolanin commentedIt's not clear we need to check_plain either of these... ?
There is still a problem with CCK values containing a
"Comment #6
robertdouglass commentedI'm not aware of any places where we show stuff from the URL in the browser without filtering, so the check_plain on the filters looks superfluous. Haven't evaluated the patch, but if it moves towards fixing the feature set, +1.
Comment #7
pwolanin commentedcommitted to 6.x