https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=17374

Jonathan Druart <jonathan.dru...@bugs.koha-community.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|Passed QA                   |Failed QA

--- Comment #23 from Jonathan Druart <jonathan.dru...@bugs.koha-community.org> 
---
2 majors problems:

1. compare columns.def and patronfields.inc
=> They are the "same"

2. It does not work, and cannot work without changes to
C4/Utils/DataTables/Members.pm

Test: Add altcontactsurname to the pref, it appears in the dropdown list,
select it, search for something: everything is returned.

Because of the following:

my $searchfields = {
# list of available fields
then later:

130         for my $searchfield ( split /,/, $searchfields->{$searchfieldstype}
) {
131             push @where_strs_or, "borrowers." .
$dbh->quote_identifier($searchfield) . " LIKE ?";
132             push @where_args, $term;
133         }

-- 
You are receiving this mail because:
You are watching all bug changes.
_______________________________________________
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to