|
Lines 160-165
sub SendPasswordRecoveryEmail {
Link Here
|
| 160 |
Deletes a password recovery entry. |
160 |
Deletes a password recovery entry. |
| 161 |
|
161 |
|
| 162 |
=cut |
162 |
=cut |
|
|
163 |
|
| 163 |
sub CompletePasswordRecovery{ |
164 |
sub CompletePasswordRecovery{ |
| 164 |
my $uniqueKey = shift; |
165 |
my $uniqueKey = shift; |
| 165 |
my $model = Koha::Database->new->schema->resultset('BorrowerPasswordRecovery'); |
166 |
my $model = Koha::Database->new->schema->resultset('BorrowerPasswordRecovery'); |
|
Lines 169-172
sub CompletePasswordRecovery{
Link Here
|
| 169 |
|
170 |
|
| 170 |
END { } # module clean-up code here (global destructor) |
171 |
END { } # module clean-up code here (global destructor) |
| 171 |
|
172 |
|
| 172 |
1; |
173 |
1; |
| 173 |
- |
|
|