[Patches] [PATCH] [SIGNED-OFF] Bug 5945: email not searchable in patron search
koha-patchbot at kohaaloha.com
koha-patchbot at kohaaloha.com
Sat Nov 5 23:25:02 NZDT 2011
From: Ian Walls <ian.walls at bywatersolutions.com>
Date: Fri, 4 Nov 2011 06:26:01 -0400
Subject: [PATCH] [SIGNED-OFF] Bug 5945: email not searchable in patron search
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 at biblibre.com>
---
members/member.pl | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/members/member.pl b/members/member.pl
index e2a6ef5..d759c31 100755
--- a/members/member.pl
+++ b/members/member.pl
@@ -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) {
--
1.7.7.1
More information about the Patches
mailing list