Right now, the form is doing
``SearchQuerySet().auto_query(self.cleaned_data['q'])``, which does
the escaping. You can do
``SearchQuerySet().filter(content=self.cleaned_data['q'])`` to pass it
along unescaped, though you'd be better off doing
``SearchQuerySet().filter(author='test1')`` if you can get just the
author name from the user.
Daniel
> --
> You received this message because you are subscribed to the Google Groups "django-haystack" group.
> To post to this group, send email to django-...@googlegroups.com.
> To unsubscribe from this group, send email to django-haysta...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/django-haystack?hl=en.
>
>