From 5e2abccf74743718314a8ee70d0248d25868f5fe Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Fri, 18 Jul 2014 12:22:58 -0400 Subject: [PATCH] Bug 7237 - duplicating patron not using patron's branch Content-Type: text/plain; charset="utf-8" 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. --- 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.7.9.5