Bug 5945: email not searchable in patron search
authorIan Walls <ian.walls@bywatersolutions.com>
Fri, 4 Nov 2011 10:26:01 +0000 (06:26 -0400)
committerPaul Poulain <paul.poulain@biblibre.com>
Wed, 9 Nov 2011 16:20:23 +0000 (17:20 +0100)
Adds 'email' to valid search parameters in members/member.pl

To test:
1. give a patron a unique email address in your test database
2. search on the full email; should work
3. search on the part of the email before the domain; should work

Signed-off-by: Julian Maurice <julian.maurice@biblibre.com>
members/member.pl

index e2a6ef5..d759c31 100755 (executable)
@@ -104,7 +104,7 @@ my ($count,$results);
 if ($member || keys %$patron) {
     #($results)=Search($member || $patron,{surname=>1,firstname=>1},[$from,$to],undef,["firstname","surname","email","othernames"]  );
     my $search_scope = ( $quicksearch ? "field_start_with" : "start_with" );
-    ($results) = Search( $member || $patron, \@orderby, undef, undef, [ "firstname", "surname", "othernames", "cardnumber", "userid" ], $search_scope );
+    ($results) = Search( $member || $patron, \@orderby, undef, undef, [ "firstname", "surname", "othernames", "cardnumber", "userid", "email" ], $search_scope );
 }
 
 if ($results) {