Bugzilla – Attachment 21512 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]
Add forgot password link to OPAC
Bug-8753-Add-forgot-password-link-to-OPAC.patch (text/plain), 23.37 KB, created by
Blou
on 2013-09-27 14:23:24 UTC
(
hide
)
Description:
Add forgot password link to OPAC
Filename:
MIME Type:
Creator:
Blou
Created:
2013-09-27 14:23:24 UTC
Size:
23.37 KB
patch
obsolete
>From 12f9a13c352d1221add48cfd0b4c93ff8a4a9186 Mon Sep 17 00:00:00 2001 >From: Blou <philippe.blouin@inlibro.com> >Date: Thu, 26 Sep 2013 14:24:29 -0400 >Subject: [PATCH] Bug 8753 - Add forgot password link to OPAC >MIME-Version: 1.0 >Content-Type: text/plain; charset=UTF-8 >Content-Transfer-Encoding: 8bit > >Sponsor: Institut universitaire en santé mentale de Montréal > >TEST PLAN: > >1) apply the patch >2) go to system preferences OPAC>>Privacy and set 'OpacResetPassword' to ON. That will cause the link 'Forgot your password' to show up on the welcome page, below connection box. >3) refresh front page, click on 'Forgot your password' and enter a VALID address (one that is associated to an entry in borrowers.email or borrowers.email_pro. >3b) Also try an INVALID address (valid yet not in your koha db). An error message will show up. >4) An email should be received at that address with a link. >5) Follow the link in the mail to fill the new password. > Until a satisfactory new password is entered, the old password is not reset. >6) Go to main page try the new password. > >http://bugs.koha-community.org/show_bug.cgi?id=10951 >--- > C4/Auth.pm | 4 +- > C4/Members.pm | 82 ++++++- > .../prog/en/modules/admin/preferences/opac.pref | 9 +- > koha-tmpl/opac-tmpl/prog/en/modules/opac-auth.tt | 3 + > koha-tmpl/opac-tmpl/prog/en/modules/opac-main.tt | 8 +- > .../prog/en/modules/opac-password-recovery.tt | 129 +++++++++++ > .../prog/en/modules/opac-send-password-recovery.tt | 13 ++ > opac/opac-main.pl | 1 + > opac/opac-password-recovery.pl | 224 ++++++++++++++++++++ > 9 files changed, 468 insertions(+), 5 deletions(-) > create mode 100644 koha-tmpl/opac-tmpl/prog/en/modules/opac-password-recovery.tt > create mode 100644 koha-tmpl/opac-tmpl/prog/en/modules/opac-send-password-recovery.tt > create mode 100755 opac/opac-password-recovery.pl > >diff --git a/C4/Auth.pm b/C4/Auth.pm >index 1e17e59..428aaea 100644 >--- a/C4/Auth.pm >+++ b/C4/Auth.pm >@@ -1020,8 +1020,10 @@ sub checkauth { > PatronSelfRegistrationDefaultCategory => C4::Context->preference("PatronSelfRegistrationDefaultCategory"), > persona => C4::Context->preference("Persona"), > opac_css_override => $ENV{'OPAC_CSS_OVERRIDE'}, >+ OpacResetPassword => C4::Context->preference("OpacResetPassword"), >+ OpacPasswordChange => C4::Context->preference("OpacPasswordChange"), > ); >- >+ > $template->param( OpacPublic => C4::Context->preference("OpacPublic")); > $template->param( loginprompt => 1 ) unless $info{'nopermission'}; > >diff --git a/C4/Members.pm b/C4/Members.pm >index 7ac69df..ccfec34 100644 >--- a/C4/Members.pm >+++ b/C4/Members.pm >@@ -41,6 +41,12 @@ use DateTime::Format::DateParse; > use Koha::DateUtils; > use Text::Unaccent qw( unac_string ); > >+## Password recovery >+use CGI; >+use Encode qw(encode decode); >+use MIME::QuotedPrint qw(encode_qp); >+use Mail::Sendmail; >+ > our ($VERSION,@ISA,@EXPORT,@EXPORT_OK,$debug); > > BEGIN { >@@ -109,7 +115,12 @@ BEGIN { > push @EXPORT, qw( > &ModMember > &changepassword >- &ModPrivacy >+ &ModPrivacy >+ ); >+ >+ # Password recovery >+ push @EXPORT, qw( >+ &SendPasswordRecoveryEmail > ); > > #Delete data >@@ -2287,6 +2298,75 @@ sub ModPrivacy { > privacy => $privacy ); > } > >+ >+sub SendPasswordRecoveryEmail { >+ my $borrowernumber = shift; >+ my $email = shift; >+ my $dbh = C4::Context->dbh; >+ #use constant EMAIL_ENCODE = 'iso-8859-1'; >+ my $emailEncode = 'iso-8859-1'; >+ my $username = GetMemberDetails($borrowernumber)->{userid}; >+ >+ #generate UUID >+ my @chars = ("A".."Z", "a".."z", "0".."9"); >+ my $uuid_str; >+ $uuid_str .= $chars[rand @chars] for 1..32; >+ >+ #insert into database >+ my $sth = $dbh->prepare( 'INSERT INTO borrower_password_recovery VALUES (? ,? , ADDDATE(NOW(), INTERVAL 2 DAY) )' ); >+ $sth->execute($borrowernumber, $uuid_str); >+ >+ my $userEmail = ( $email ) ? $email : GetFirstValidEmailAddress($borrowernumber); >+ #define to/from emails >+ my $kohaEmail = C4::Context->preference( 'KohaAdminEmailAddress' ); >+ >+ #create link >+ my $uuidLink = "http://" . C4::Context->preference( 'OPACBaseURL' ) . "/cgi-bin/koha/opac-password-recovery.pl?uniqueKey=$uuid_str"; >+ #warn $uuidLink; >+ >+ #build email content >+ my $query = new CGI; >+ my ( $template2, $borrower_number, $cookie ) = C4::Auth::get_template_and_user( >+ { >+ template_name => "opac-send-password-recovery.tmpl", >+ query => $query, >+ type => "opac", >+ authnotrequired => 1, >+ } >+ ); >+ $template2->param( >+ uuidLink => $uuidLink, >+ username => $username, >+ ); >+ >+ # Getting template result and >+ my $template_res = $template2->output(); >+ >+ #Mail attributes >+ my %mail = ( >+ To => $userEmail, >+ From => $kohaEmail, >+ 'Content-Type' => 'text/html; charset="' . $emailEncode . '"', >+ ); >+ >+ #getting mail properties >+ if ( $template_res =~ /<SUBJECT>(.*)<END_SUBJECT>/s ) { $mail{'subject'} = decode( 'utf-8', $1 ); } >+ if ( $template_res =~ /<MESSAGE>\n(.*)\n<END_MESSAGE>/s ) { $mail{'body'} = decode( 'utf-8', $1 ); } >+ #send mail >+ if ( sendmail %mail ) >+ { >+ # if it works.... >+ return 1; >+ } >+ else >+ { >+ # if it doesnt work.... >+ warn "Error sending mail: $Mail::Sendmail::error \n"; >+ return 0; >+ } >+} >+ >+ > =head2 AddMessage > > AddMessage( $borrowernumber, $message_type, $message, $branchcode ); >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/opac.pref b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/opac.pref >index a75c7ef..5687edc 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/opac.pref >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/opac.pref >@@ -551,7 +551,14 @@ OPAC: > track: "Track" > no: "Don't track" > - links that patrons click on >- >+ - >+ - pref: OpacResetPassword >+ default: 1 >+ choices: >+ yes: "On" >+ no: "Off" >+ - ". If On, the user can reset his password on OPAC." >+ > Shelf Browser: > - > - pref: OPACShelfBrowser >diff --git a/koha-tmpl/opac-tmpl/prog/en/modules/opac-auth.tt b/koha-tmpl/opac-tmpl/prog/en/modules/opac-auth.tt >index 7b8b8f9..e0d2974 100644 >--- a/koha-tmpl/opac-tmpl/prog/en/modules/opac-auth.tt >+++ b/koha-tmpl/opac-tmpl/prog/en/modules/opac-auth.tt >@@ -85,6 +85,9 @@ please choose against which one you would like to authenticate: </p> > </ol></fieldset> > > <input type="submit" value="Log In" class="submit" /> >+[% IF OpacPasswordChange && OpacResetPassword %] >+ <p><a href="/cgi-bin/koha/opac-password-recovery.pl">Forgot your password?</a></p> >+[% END %] > <div id="nologininstructions"> > <h5>Don't have a password yet?</h5><p> If you don't have a password yet, stop by the circulation desk the next time you're in the library. We'll happily set one up for you.</p> > <h5>Don't have a library card?</h5><p> If you don't have a library card, stop by your local library to sign up[% IF PatronSelfRegistration && PatronSelfRegistrationDefaultCategory %]<span id="registrationinstructions"> or <a href="/cgi-bin/koha/opac-memberentry.pl">register here</a></span>[% END %]. </p> >diff --git a/koha-tmpl/opac-tmpl/prog/en/modules/opac-main.tt b/koha-tmpl/opac-tmpl/prog/en/modules/opac-main.tt >index eb1e600..3f2bfa2 100644 >--- a/koha-tmpl/opac-tmpl/prog/en/modules/opac-main.tt >+++ b/koha-tmpl/opac-tmpl/prog/en/modules/opac-main.tt >@@ -59,8 +59,12 @@ > <input type="submit" value="Log In" class="submit" /> > > [% IF PatronSelfRegistration && PatronSelfRegistrationDefaultCategory %]<div id="patronregistration">Don't have an account? <a href="/cgi-bin/koha/opac-memberentry.pl">Register here.</a></div>[% END %] >- >- </fieldset></fieldset> >+ >+ </fieldset> >+ [% IF OpacPasswordChange && opacResetPassword %] >+ <p><a href="/cgi-bin/koha/opac-password-recovery.pl">Forgot your password?</a></p> >+ [% END %] >+ </fieldset> > </form> > </div> > [% END %] >diff --git a/koha-tmpl/opac-tmpl/prog/en/modules/opac-password-recovery.tt b/koha-tmpl/opac-tmpl/prog/en/modules/opac-password-recovery.tt >new file mode 100644 >index 0000000..195ed55 >--- /dev/null >+++ b/koha-tmpl/opac-tmpl/prog/en/modules/opac-password-recovery.tt >@@ -0,0 +1,129 @@ >+[% INCLUDE 'doc-head-open.inc' %] >+[% IF (LibraryNameTitle) %][% LibraryNameTitle %][% ELSE %]Koha Online[% END %] Catalog › >+[% INCLUDE 'doc-head-close.inc' %] >+ >+<script type="text/javascript" language="javascript"> >+ $(function() { >+ $("#CheckAll").click(function(){ >+ $("[name=deleteRequest]").attr('checked', true); >+ return false; >+ }); >+ >+ $("#CheckNone").click(function(){ >+ $("[name=deleteRequest]").attr('checked', false); >+ return false; >+ }); >+ >+ $("select#type").change(function() { >+ $("fieldset#serial, fieldset#book, fieldset#chapter").hide() >+ $("fieldset#" + $(this).val() ).show(); >+ }); >+ }); >+</script> >+</head> >+<body> >+ >+<div id="doc3" class="yui-t1"> >+ <div id="bd"> >+[% INCLUDE 'masthead.inc' %] >+ <div id="yui-main"> >+ <div class="yui-b"> >+ <div class="yui-g"> >+ <div class="illrequest"> >+[% IF (!OpacResetPassword) %] >+ <div class="dialog alert">You can't reset your password.</div> >+[% ELSIF (password_recovery) %] >+ [% IF (hasError) %] >+ <span class="TxtErreur"> >+ [% IF (sendmailError) %] >+ An error has occured while sending you the password recovery link. >+ <br/>Please try again later. >+ [% ELSIF (errNoEmailFound) %] >+ No account was found with the email address "<strong>[% email %]</strong>" >+ <br/>Check if you typed it correctly. >+ [% ELSIF (errTooManyEmailFound) %] >+ More than one account has been found for the email address: "<strong>[% email %]</strong>" >+ <br/>Try yo use your alternative email if you have another. >+ [% ELSIF (errAlreadyStartRecovery) %] >+ The process of password recovery has already started for this account ("<strong>[% email %]</strong>") >+ <br/>Check your emails; you should recieve the link to reset your password. >+ <br/>If you didn't recieve it, <a href="/cgi-bin/koha/opac-password-recovery.pl?resendEmail=true&email=[% email %]">click here to get a new password recovery link</a> >+ [% END %] >+ <br/><br/>Please contact the staff if you need further assistance. >+ </span> >+ [% END %] >+ <div id="password-recovery" class="container"> >+ <form action="/cgi-bin/koha/opac-password-recovery.pl" method="post"> >+ <input type="hidden" name="koha_login_context" value="opac" /> >+ <fieldset class="brief"> >+ <legend>Password recovery form:</legend> >+ <p>To reset your password, enter your email address. >+ <br/>A link to reset your password will be sent at this address.</p> >+ <ol> >+ <li><label for="email">Email:</label><input type="text" id="email" size="40" name="email" value="[% email %]" /></li> >+ </ol> >+ <fieldset class="action"> >+ <input type="submit" value="Submit" class="submit" name="sendEmail" /> >+ </fieldset> >+ </fieldset> >+ </form> >+ </div> >+ >+[% ELSIF (new_password) %] >+ [% IF (errLinkNotValid) %] >+ <span class="TxtErreur"><h6> >+ We could not authentify you as the account owner. >+ <br/>Be sure to use the link you recieved in your email. >+ </h6></span> >+ [% ELSE %] >+ [% IF (hasError) %] >+ <span class="TxtErreur"> >+ [% IF (errPassNotMatch) %] >+ The passwords entered does not match. >+ <br/>Please try again. >+ [% ELSIF (errPassTooShort) %] >+ The password is too short. >+ <br/>The password must contain at least [% minPassLength %] characters. >+ [% END %] >+ </span> >+ [% END %] >+ <div id="password-recovery" class="container"> >+ <form action="/cgi-bin/koha/opac-password-recovery.pl" method="post"> >+ <input type="hidden" name="koha_login_context" value="opac" /> >+ <fieldset class="brief"> >+ <legend>Password recovery form:</legend> >+ <p class="light">The password must contain at least [% minPassLength %] characters.</p> >+ <ol> >+ <li><label for="password">New password:</label><input type="password" id="password" size="40" name="password" /></li> >+ <li><label for="repeatPassword">Confirm new password:</label><input type="password" id="repeatPassword" size="40" name="repeatPassword" /></li> >+ </ol> >+ <fieldset class="action"> >+ <input type="hidden" name="username" value="[% username %]" /> >+ <input type="hidden" name="uniqueKey" value="[% uniqueKey %]" /> >+ <input type="submit" value="Submit" class="submit" name="passwordReset" /> >+ </fieldset> >+ </fieldset> >+ </form> >+ </div> >+ [% END %] >+[% ELSIF (mail_sent) %] >+ <p>A mail has been sent to "[% email %]". >+ <br/>It contains a link to create a new password. >+ <br/>This link will be valid for 2 days from now.</p> >+ <br/><a href="/cgi-bin/koha/opac-main.pl"">Click here to return to the main page.</a> >+[% ELSIF (password_reset_done) %] >+ <p>The password has been changed for the user "[% username %]". >+ <br/>You can now login using <a href="/cgi-bin/koha/opac-user.pl">this form</a>.</p> >+[% END %] >+ </div> >+ </div> >+ </div> >+ </div> >+ <div class="yui-b"> >+ <div class="container"> >+ [% INCLUDE 'usermenu.inc' %] >+ </div> >+ </div> >+ </div> >+[% INCLUDE 'opac-bottom.inc' %] >+</div> >diff --git a/koha-tmpl/opac-tmpl/prog/en/modules/opac-send-password-recovery.tt b/koha-tmpl/opac-tmpl/prog/en/modules/opac-send-password-recovery.tt >new file mode 100644 >index 0000000..19d12a4 >--- /dev/null >+++ b/koha-tmpl/opac-tmpl/prog/en/modules/opac-send-password-recovery.tt >@@ -0,0 +1,13 @@ >+<SUBJECT>[% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha Online[% END %] - Password recovery<END_SUBJECT> >+ >+<MESSAGE> >+<html> >+<p>This email has been sent in response to your password recovery request for the account <strong>[% username %]</strong>.</p> >+<p> >+You can now create your new password using the following link: >+<br/><a href="[% uuidLink %]">[% uuidLink %]</a> >+</p> >+<p>This link will be valid for 2 days from this email's reception, then you must reapply if you do not change your password.</p> >+<p>Thank you.</p> >+</html> >+<END_MESSAGE> >diff --git a/opac/opac-main.pl b/opac/opac-main.pl >index 7c6ee36..00025c5 100755 >--- a/opac/opac-main.pl >+++ b/opac/opac-main.pl >@@ -58,6 +58,7 @@ $template->param( > koha_news_count => $koha_news_count, > display_daily_quote => C4::Context->preference('QuoteOfTheDay'), > daily_quote => $quote, >+ opacResetPassword => C4::Context->preference('OpacResetPassword'), > ); > > # If GoogleIndicTransliteration system preference is On Set paramter to load Google's javascript in OPAC search screens >diff --git a/opac/opac-password-recovery.pl b/opac/opac-password-recovery.pl >new file mode 100755 >index 0000000..be5e36a >--- /dev/null >+++ b/opac/opac-password-recovery.pl >@@ -0,0 +1,224 @@ >+#!/usr/bin/perl >+ >+use strict; >+ >+use CGI; >+use Mail::Sendmail; >+use Digest::MD5 qw(md5_base64); >+use HTML::Entities; >+ >+use C4::Auth; >+use C4::Koha; >+use C4::Members qw(changepassword GetMember GetMemberDetails SendPasswordRecoveryEmail); >+use C4::Output; >+use C4::Context; >+ >+my $query = new CGI; >+ >+my ( $template, $borrowernumber, $cookie ) = get_template_and_user( >+ { >+ template_name => "opac-password-recovery.tmpl", >+ query => $query, >+ type => "opac", >+ authnotrequired => 1, >+ debug => 1, >+ } >+); >+ >+my $email = $query->param('email'); >+my $password = $query->param('password'); >+my $repeatPassword = $query->param('repeatPassword'); >+my $minPassLength = C4::Context->preference( 'minPasswordLength' ); >+my $id = $query->param('id'); >+my $uniqueKey = $query->param('uniqueKey'); >+my $username = $query->param('username'); >+my $borrower_number; >+ >+#errors >+my $hasError; >+ >+#email form error >+my $errNoEmailFound; >+my $errAlreadyStartRecovery; >+ >+#new password form error >+my $errLinkNotValid; >+my $errPassNotMatch; >+my $errPassTooShort; >+ >+my $dbh = C4::Context->dbh; >+ >+$template->param( OpacResetPassword => C4::Context->preference("OpacResetPassword") ); >+ >+if ( $query->param('sendEmail') || $query->param('resendEmail') ) >+{ >+#send mail + confirmation >+ >+ #try with the main email >+ my $borrower_number; >+ my $accountActivated; >+ my %borrower_infos = GetMember(email => $email); >+ if ( %borrower_infos ) >+ { >+ $borrower_number = GetMember(email => $email)->{'borrowernumber'}; >+ $username = GetMemberDetails( $borrower_number )->{'userid'}; >+ $accountActivated = ( GetMemberDetails( $borrower_number )->{'categorycode'} ne 'UNAUTHORIZ' ) ? 1 : 0; >+ } >+ else >+ { >+ #try with the secondary email >+ %borrower_infos = GetMember(emailpro => $email); >+ if ( %borrower_infos ) >+ { >+ $borrower_number = GetMember(emailpro => $email)->{'borrowernumber'}; >+ $username = GetMemberDetails( $borrower_number )->{'userid'}; >+ $accountActivated = ( GetMemberDetails( $borrower_number )->{'categorycode'} ne 'UNAUTHORIZ' ) ? 1 : 0; >+ } >+ else >+ { >+ #try when the other contact email >+ %borrower_infos = GetMember(B_email => $email); >+ if ( %borrower_infos ) >+ { >+ $borrower_number = GetMember(B_email => $email)->{'borrowernumber'}; >+ $username = GetMemberDetails( $borrower_number )->{'userid'}; >+ $accountActivated = ( GetMemberDetails( $borrower_number )->{'categorycode'} ne 'UNAUTHORIZ' ) ? 1 : 0; >+ } >+ } >+ } >+ >+ if ( !$email || !$username || !$borrower_number || !$accountActivated ) >+ { >+ $hasError = 1; >+ $errNoEmailFound = 1; >+ } >+ elsif ( !$query->param('resendEmail') ) >+ { >+ my $sth = $dbh->prepare( "SELECT borrowernumber FROM borrower_password_recovery WHERE NOW() < valid_until AND borrowernumber = ?" ); >+ $sth->execute($borrower_number); >+ if ( my $already = $sth->fetchrow ) >+ { >+ $hasError = 1; >+ $errAlreadyStartRecovery = 1; >+ } >+ } >+ >+ if ( $hasError ) >+ { >+ $template->param( hasError => 1, >+ errNoEmailFound => $errNoEmailFound, >+ errAlreadyStartRecovery => $errAlreadyStartRecovery, >+ password_recovery => 1, >+ email => HTML::Entities::encode($email), >+ ); >+ } >+ else >+ { >+ #generate uuid and send recovery email >+ if ( SendPasswordRecoveryEmail($borrower_number, $email) ) >+ { >+ # if it works.... >+ $template->param( mail_sent => 1, >+ email => $email >+ ); >+ } >+ else >+ { >+ # if it doesnt work.... >+ $template->param( password_recovery => 1, >+ sendmailError => 1 >+ ); >+ } >+ } >+} >+elsif ( $query->param('passwordReset') ) >+{ >+#new password form >+ #check if the link is still valid >+ my $sth = $dbh->prepare( "SELECT borrower_password_recovery.borrowernumber, userid >+ FROM borrower_password_recovery, borrowers >+ WHERE borrowers.borrowernumber = borrower_password_recovery.borrowernumber >+ AND NOW() < valid_until >+ AND uuid = ?" ); >+ $sth->execute( $uniqueKey ); >+ ( $borrower_number , $username) = $sth->fetchrow; >+ >+ #validate password length & match >+ if ( ( $borrower_number ) && ( $password eq $repeatPassword ) && ( length( $password ) >= $minPassLength ) ) >+ { >+ #apply changes >+ changepassword( $username, $borrower_number, md5_base64($password) ); >+ #this line needed to fix a log bug in "Log.pm:75" >+ # >+ # if ( !$usernumber ) { $usernumber=0; } >+ # >+ >+ #remove entry >+ my $sth = $dbh->prepare( "DELETE FROM borrower_password_recovery >+ WHERE uuid = ? >+ ORDER BY valid_until DESC LIMIT 1" ); >+ $sth->execute( $uniqueKey); >+ >+ $template->param( password_reset_done => 1, >+ username => $username >+ ); >+ } >+ else >+ { >+ #errors >+ if ( !$borrower_number ) >+ { >+ #parameters not valid >+ $errLinkNotValid = 1; >+ } >+ elsif ( $password ne $repeatPassword ) >+ { >+ #passwords does not match >+ $errPassNotMatch = 1; >+ } >+ elsif ( length( $password ) < $minPassLength ) >+ { >+ #password too short >+ $errPassTooShort = 1; >+ } >+ $template->param( new_password => 1, >+ minPassLength => $minPassLength, >+ email => $email, >+ uniqueKey => $uniqueKey, >+ errLinkNotValid => $errLinkNotValid, >+ errPassNotMatch => $errPassNotMatch, >+ errPassTooShort => $errPassTooShort, >+ hasError => 1 ); >+ } >+} >+elsif ( $uniqueKey ) >+{ >+#reset password form >+ #check if the link is valid >+ my $sth = $dbh->prepare( "SELECT borrower_password_recovery.borrowernumber, userid >+ FROM borrower_password_recovery, borrowers >+ WHERE borrowers.borrowernumber = borrower_password_recovery.borrowernumber >+ AND NOW() < valid_until >+ AND uuid = ?" ); >+ $sth->execute( $uniqueKey ); >+ ( $borrower_number, $username ) = $sth->fetchrow; >+ if( !$borrower_number ) >+ { >+ $errLinkNotValid = 1; >+ } >+ $template->param( new_password => 1, >+ minPassLength => $minPassLength, >+ email => $email, >+ uniqueKey => $uniqueKey, >+ username => $username, >+ errLinkNotValid => $errLinkNotValid >+ ); >+} >+else >+{ >+ #password recovery form (to send email) >+ $template->param( password_recovery => 1 ); >+} >+ >+output_html_with_http_headers $query, $cookie, $template->output; >+ >-- >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