]> git.koha-community.org Git - koha.git/commit
Bug 9377 - itemtype in duplicate biblio search
authorFridolyn SOMERS <fridolyn.somers@biblibre.com>
Thu, 7 Mar 2013 16:37:16 +0000 (17:37 +0100)
committerChris Cormack <chris@bigballofwax.co.nz>
Sat, 16 Mar 2013 20:24:49 +0000 (09:24 +1300)
commit91b19f9f6a2520eb90409b9be10743a7e7783629
treecd5a81f99b53b21a8ec50d27e24e390059fee22b
parent9b4b36e6ffaabbd5c955042fc0feb90c81e2ef21
Bug 9377 - itemtype in duplicate biblio search

In C4::Search::FindDuplicate, when biblio has no ISBN, the duplicate search adds :
$query .= " and itemtype=$result->{itemtype}".
This is wrong when itemtype is defined in items.

This patch simply removes the itemtype from dublicate search.

Test plan :
- Go to a biblio details page
- Click on "Edit as new (duplicate)"
- If ISBN is defined, remove it
- Click on save
=> a duplicate is detected
- Change biblio item type and save
=> a duplicate is detected
Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Signed-off-by: Jared Camins-Esakov <jcamins@cpbibliography.com>
Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz>
C4/Search.pm