From fae45d29910fc31c396e92f524240c0d2327295b Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Thu, 21 Apr 2022 17:11:33 +0100 Subject: [PATCH] Bug 28998: (QA follow-up) POD Fix This POD fix keeps the QA script happy Signed-off-by: Martin Renvoize Signed-off-by: Fridolin Somers --- Koha/Patron.pm | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Koha/Patron.pm b/Koha/Patron.pm index 2b61397c7f..80d5c2b5f3 100644 --- a/Koha/Patron.pm +++ b/Koha/Patron.pm @@ -2131,12 +2131,12 @@ sub can_patron_change_staff_only_lists { return 0; } -=head3 +=head3 encode_secret - $patron->encode_secret($secret32); + $patron->encode_secret($secret32); - Secret (TwoFactorAuth expects it in base32 format) is encrypted. - You still need to call ->store. +Secret (TwoFactorAuth expects it in base32 format) is encrypted. +You still need to call ->store. =cut @@ -2148,12 +2148,12 @@ sub encode_secret { return $self->secret($secret); } -=head3 +=head3 decoded_secret - my $secret32 = $patron->decoded_secret; + my $secret32 = $patron->decoded_secret; - Decode the patron secret. We expect to get back a base32 string, but this - is not checked here. Caller of encode_secret is responsible for that. +Decode the patron secret. We expect to get back a base32 string, but this +is not checked here. Caller of encode_secret is responsible for that. =cut -- 2.20.1