Bugzilla – Attachment 24907 Details for
Bug 8753
Add forgot password link to OPAC
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
hash vs hashref issue
hash-vs-hashref-issue.patch (text/plain), 1.37 KB, created by
Blou
on 2014-01-30 21:41:32 UTC
(
hide
)
Description:
hash vs hashref issue
Filename:
MIME Type:
Creator:
Blou
Created:
2014-01-30 21:41:32 UTC
Size:
1.37 KB
patch
obsolete
>From ae823a88d15da4758b137b98aea58432f590ca09 Mon Sep 17 00:00:00 2001 >From: Blou <philippe.blouin@inlibro.com> >Date: Thu, 30 Jan 2014 16:40:21 -0500 >Subject: [PATCH] hash vs hashref issue > >http://bugs.koha-community.org/show_bug.cgi?id=8753 >--- > opac/opac-password-recovery.pl | 10 +++++----- > 1 file changed, 5 insertions(+), 5 deletions(-) > >diff --git a/opac/opac-password-recovery.pl b/opac/opac-password-recovery.pl >index d44d19d..751bdeb 100755 >--- a/opac/opac-password-recovery.pl >+++ b/opac/opac-password-recovery.pl >@@ -55,11 +55,11 @@ if ( $query->param('sendEmail') || $query->param('resendEmail') ) { > #try with the main email > my $borrower_number; > $email ||= ''; # avoid undef >- my %borrower_infos = GetMember( email => $email ); >- %borrower_infos = GetMember( emailpro => $email ) unless %borrower_infos; >- %borrower_infos = GetMember( B_email => $email ) unless %borrower_infos; >- if(%borrower_infos) { >- $borrower_number = $borrower_infos{'borrowernumber'}; >+ my $borrower_infos = GetMember( email => $email ); >+ $borrower_infos = GetMember( emailpro => $email ) unless $borrower_infos; >+ $borrower_infos = GetMember( B_email => $email ) unless $borrower_infos; >+ if($borrower_infos) { >+ $borrower_number = $borrower_infos->{'borrowernumber'}; > $username = GetMemberDetails($borrower_number)->{'userid'}; > } > >-- >1.7.10.4
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 8753
:
21502
|
21512
|
21521
|
21849
|
22175
|
22430
|
24586
|
24780
|
24781
|
24846
|
24853
|
24854
|
24855
|
24862
|
24906
|
24907
|
24908
|
25038
|
25039
|
25051
|
29111
|
33175
|
33176
|
34472
|
36819
|
37492
|
39049
|
39144
|
39165
|
39166
|
39167
|
39168
|
39827
|
41181
|
41192
|
41193
|
41455
|
41686
|
41687
|
41688
|
41706
|
43017
|
43183
|
43576
|
44305
|
44306
|
44307
|
44308
|
44309
|
44310
|
44311
|
44323
|
44324
|
44325
|
44326
|
44327
|
44329
|
44330
|
45209
|
45210
|
45211
|
45212
|
45213
|
45214
|
45215
|
45223
|
45224
|
45225
|
45226
|
45227
|
45228
|
45229
|
45230
|
46379
|
47164
|
47165
|
47166
|
47167
|
47168
|
47169
|
47170
|
47171
|
47357
|
47366