Bugzilla – Attachment 10308 Details for
Bug 8251
Patrons are systematically debarred at checkin
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 8251 - Patrons get incorrectly debarred
Bug-8251---Patrons-get-incorrectly-debarred.patch (text/plain), 1.37 KB, created by
Tomás Cohen Arazi (tcohen)
on 2012-06-15 17:59:20 UTC
(
hide
)
Description:
Bug 8251 - Patrons get incorrectly debarred
Filename:
MIME Type:
Creator:
Tomás Cohen Arazi (tcohen)
Created:
2012-06-15 17:59:20 UTC
Size:
1.37 KB
patch
obsolete
>From 8ac7558dd90003c5ea665e3f3f79cab4c4858c7f Mon Sep 17 00:00:00 2001 >From: Tomas Cohen Arazi <tomascohen@gmail.com> >Date: Fri, 15 Jun 2012 14:51:42 -0300 >Subject: [PATCH] Bug 8251 - Patrons get incorrectly debarred >Content-Type: text/plain; charset="utf-8" > >Patrons get incorrectly debarred because of the use of Datetime->delta_days >wich happens to always return a positive number. > >Also changed the use of Datetime->truncate function so it follows the docs, >using 'day' instead of 'days' (which is used in DateTime::Duration). > >This patch has been tested against master. >--- > Koha/Calendar.pm | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > >diff --git a/Koha/Calendar.pm b/Koha/Calendar.pm >index f63e7eb..dc132cd 100644 >--- a/Koha/Calendar.pm >+++ b/Koha/Calendar.pm >@@ -173,9 +173,9 @@ sub days_between { > my $dateend_temp = $end_dt->clone(); > > # start and end should not be closed days >- my $duration = $dateend_temp->delta_days($datestart_temp); >- $datestart_temp->truncate( to => 'days' ); >- $dateend_temp->truncate( to => 'days' ); >+ $datestart_temp->truncate( to => 'day' ); >+ $dateend_temp->truncate( to => 'day' ); >+ my $duration = $dateend_temp - $datestart_temp; > while ( DateTime->compare( $datestart_temp, $dateend_temp ) == -1 ) { > $datestart_temp->add( days => 1 ); > if ( $self->is_holiday($datestart_temp) ) { >-- >1.7.9.5
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 8251
:
10289
|
10290
|
10308
|
10348
|
10418
|
10597
|
10767
|
10768
|
10914
|
11976
|
11979