From 6038a3dfd14c4b77afd0e52308f0dd10fb6fa782 Mon Sep 17 00:00:00 2001 From: David Nind Date: Thu, 29 Jan 2026 18:07:51 +0000 Subject: [PATCH] Bug 41735: Tidy OPAC self-registration page - fix qa warning opac/opac-memberentry.pl has a double comma in the source code. This generates a tidy error when the qa script is run. Test plan: 1. Review the patch and note that the double comma is removed. 2. Run the qa script - there should be no warnings or errors: qa Signed-off-by: David Nind --- opac/opac-memberentry.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opac/opac-memberentry.pl b/opac/opac-memberentry.pl index ce530d4bb1..1daa2daf2c 100755 --- a/opac/opac-memberentry.pl +++ b/opac/opac-memberentry.pl @@ -277,7 +277,7 @@ if ( $op eq 'cud-create' ) { my $letter = GetPreparedLetter( module => 'members', letter_code => 'WELCOME', - branchcode => $patron->branchcode,, + branchcode => $patron->branchcode, lang => $patron->lang || 'default', tables => { 'branches' => $patron->branchcode, -- 2.39.5