From d047ed04dca2b0cfb23eaa8929d8e25c102906b9 Mon Sep 17 00:00:00 2001
From: Nick Clemens <nick@bywatersolutions.com>
Date: Fri, 15 Jan 2016 15:53:30 +0000
Subject: [PATCH] Bug 15343 [QA Follow up] Fix captcha display

Make captcha visible even if password field is hidden
Remove password confirmation field before submitting modification

Signed-off-by: Jesse Weaver <jweaver@bywatersolutions.com>
Signed-off-by: Mirko Tietgen <mirko@abunchofthings.net>
---
 koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry.tt | 2 ++
 opac/opac-memberentry.pl                                     | 1 +
 2 files changed, 3 insertions(+)

diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry.tt
index a57ab0c..7ef1f5ba 100644
--- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry.tt
+++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry.tt
@@ -814,7 +814,9 @@
                             </ol>
                         [% END %]
                     </fieldset>
+               [% END %]
 
+               [% UNLESS action == 'edit' %]
                     <fieldset class="rows" id="memberentry_captcha">
                         <ol>
 
diff --git a/opac/opac-memberentry.pl b/opac/opac-memberentry.pl
index da9e186..66bbb86 100755
--- a/opac/opac-memberentry.pl
+++ b/opac/opac-memberentry.pl
@@ -80,6 +80,7 @@ if ( $action eq 'create' ) {
 
     my @empty_mandatory_fields = CheckMandatoryFields( \%borrower, $action );
     my $invalidformfields = CheckForInvalidFields(\%borrower);
+    delete $borrower{'password2'};
 
     if (@empty_mandatory_fields || @$invalidformfields) {
         $template->param(
-- 
2.1.4