Bugzilla – Attachment 154101 Details for
Bug 34435
get_password_expiry_date should not modify its parameter
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 34435: Remove side effect from get_password_expiry_date
Bug-34435-Remove-side-effect-from-getpasswordexpir.patch (text/plain), 1.30 KB, created by
Sam Lau
on 2023-07-31 15:06:29 UTC
(
hide
)
Description:
Bug 34435: Remove side effect from get_password_expiry_date
Filename:
MIME Type:
Creator:
Sam Lau
Created:
2023-07-31 15:06:29 UTC
Size:
1.30 KB
patch
obsolete
>From 23e5e0a3cdee6ad02104f5a9307d604dfe1ffb36 Mon Sep 17 00:00:00 2001 >From: emlam <emily.lamancusa@montgomerycountymd.gov> >Date: Thu, 27 Jul 2023 16:36:34 +0000 >Subject: [PATCH] Bug 34435: Remove side effect from get_password_expiry_date > >If get_password_expiry_date is passed a DateTime object >as a parameter, it modifies and returns the original >object. This can create possible side effects. > >This patch modifies get_password_expiry_date to clone the >DateTime object that it receives as a parameter and >return the modified clone, so that object references can >be passed in safely. > >To test: >prove t/db_dependent/Koha/Patron/Category.t > >Signed-off-by: Sam Lau <samalau@gmail.com> >--- > Koha/Patron/Category.pm | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/Koha/Patron/Category.pm b/Koha/Patron/Category.pm >index 335367b825..e24c8d6e79 100644 >--- a/Koha/Patron/Category.pm >+++ b/Koha/Patron/Category.pm >@@ -126,7 +126,7 @@ sub get_password_expiry_date { > my ($self, $date ) = @_; > if ( $self->password_expiry_days ) { > $date ||= dt_from_string; >- $date = dt_from_string( $date ) unless ref $date; >+ $date = ref $date ? $date->clone() : dt_from_string( $date ); > return $date->add( days => $self->password_expiry_days )->ymd; > } else { > return; >-- >2.30.2
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 34435
:
153998
|
153999
|
154100
|
154101
|
154278
|
154279