Bugzilla – Attachment 126258 Details for
Bug 21729
When reverting a hold the expirationdate should be reset
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 21729: Simplify non-existent expiration date
Bug-21729-Simplify-non-existent-expiration-date.patch (text/plain), 1.31 KB, created by
Jonathan Druart
on 2021-10-14 06:38:53 UTC
(
hide
)
Description:
Bug 21729: Simplify non-existent expiration date
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2021-10-14 06:38:53 UTC
Size:
1.31 KB
patch
obsolete
>From ebf723dc94e189727a753698ce8e59ced02ea8ff Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Thu, 14 Oct 2021 08:38:02 +0200 >Subject: [PATCH] Bug 21729: Simplify non-existent expiration date > >No change in behaviour expected by this patch. >--- > Koha/Hold.pm | 7 ++----- > 1 file changed, 2 insertions(+), 5 deletions(-) > >diff --git a/Koha/Hold.pm b/Koha/Hold.pm >index 9f7a261c9f6..0cadbb2ba4b 100644 >--- a/Koha/Hold.pm >+++ b/Koha/Hold.pm >@@ -597,8 +597,7 @@ sub store { > > if ( > C4::Context->preference('DefaultHoldExpirationdate') >- and ( not defined $self->expirationdate >- or $self->expirationdate eq '' ) >+ && !$self->expirationdate > ) > { > $self->_set_default_expirationdate; >@@ -612,9 +611,7 @@ sub store { > if ( exists $updated_columns{reservedate} ) { > if ( > C4::Context->preference('DefaultHoldExpirationdate') >- and ( not exists $updated_columns{expirationdate} >- or exists $updated_columns{expirationdate} >- and $updated_columns{expirationdate} eq '' ) >+ && ! exists $updated_columns{expirationdate} > ) > { > $self->_set_default_expirationdate; >-- >2.25.1
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 21729
:
126160
|
126161
|
126162
|
126203
|
126258
|
127797
|
127798
|
127799
|
127800
|
127867
|
127868
|
127869
|
127870
|
127877
|
127878
|
127879
|
127880
|
128761
|
129090
|
129091
|
129092
|
129093
|
129094