From ada7e32bec794c1e18545e6ca231d38ff2f3e30a Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Fri, 18 Jul 2014 12:22:58 -0400 Subject: [PATCH] [PASSED QA] Bug 7237 - duplicating patron not using patron's branch When duplicating a patron the original patron's library should be preselected. To test, apply the patch and choose a patron to duplicate, noting which library is set as their home library. Click the "Duplicate" button and cnofirm that the patron's library is preselected on the patron entry form. Signed-off-by: Jonathan Druart Signed-off-by: Katrin Fischer Works as described, no problems found. --- members/memberentry.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/members/memberentry.pl b/members/memberentry.pl index 959a795..49f728e 100755 --- a/members/memberentry.pl +++ b/members/memberentry.pl @@ -604,7 +604,7 @@ if (C4::Context->userenv && C4::Context->userenv->{'branch'}) { $userbranch = C4::Context->userenv->{'branch'}; } -if (defined ($data{'branchcode'}) and ( $op eq 'modify' || ( $op eq 'add' && $category_type eq 'C' ) )) { +if (defined ($data{'branchcode'}) and ( $op eq 'modify' || $op eq 'duplicate' || ( $op eq 'add' && $category_type eq 'C' ) )) { $userbranch = $data{'branchcode'}; } -- 1.9.1