Bug 18956: [QA Follow-up] Resolve a CGI::Param in list context warn
authorMarcel de Rooy <m.de.rooy@rijksmuseum.nl>
Fri, 8 Sep 2017 06:53:37 +0000 (08:53 +0200)
committerKatrin Fischer <katrin.fischer.83@web.de>
Sun, 22 Oct 2017 21:41:55 +0000 (21:41 +0000)
From the plack-error.log:
CGI::param called in list context from package CGI::Compile::ROOT::usr_share_koha_masterclone_opac_opac_2dpassword_2drecovery_2epl line 129, this can lead to vulnerabilities. See the warning in "Fetching the value or values of a single named parameter" at /usr/share/perl5/CGI.pm line 436.

Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>

opac/opac-password-recovery.pl

index 9a7a0ca..6ffd57c 100755 (executable)
@@ -126,7 +126,7 @@ if ( $query->param('sendEmail') || $query->param('resendEmail') ) {
             username                => $username
         );
     }
-    elsif ( SendPasswordRecoveryEmail( $borrower, $email, $query->param('resendEmail') ) ) {    # generate uuid and send recovery email
+    elsif ( SendPasswordRecoveryEmail( $borrower, $email, scalar $query->param('resendEmail') ) ) {    # generate uuid and send recovery email
         $template->param(
             mail_sent => 1,
             email     => $email