[Koha-bugs] [Bug 15541] Prevent normalization during matching/import process

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Mon Jan 18 07:13:28 CET 2016


http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15541

--- Comment #3 from David Cook <dcook at prosentient.com.au> ---
This is turning out to be harder than expected...

In C4::Matcher::get_matches, it creates a query like
"qualifier,qualifier:value" for QP, or "qualifier,qualifier=value" for non-QP.

That's OK... but in C4::Search::SimpleSearch, QP gets turned off by
"qualifier,qualifier" so it becomes a non-QP query... but it's created with a
":" instead of a "=".

This matters because we need a "=" instead of a ":" for the non-QP query... and
we can't wholesale change ":" to "=" because of the URL syntax required by the
URL register...

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list