Bugzilla – Attachment 25698 Details for
Bug 11694
Improve handling of individual hold suspension in Bootstrap OPAC
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 11694 [QA Followup] - Don't include time when converting date string to DateTime
Bug-11694-QA-Followup---Dont-include-time-when-con.patch (text/plain), 988 bytes, created by
Kyle M Hall (khall)
on 2014-02-27 13:42:15 UTC
(
hide
)
Description:
Bug 11694 [QA Followup] - Don't include time when converting date string to DateTime
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2014-02-27 13:42:15 UTC
Size:
988 bytes
patch
obsolete
>From c4f035fc347488fc2d781cc05daf43bf0114e992 Mon Sep 17 00:00:00 2001 >From: Kyle M Hall <kyle@bywatersolutions.com> >Date: Thu, 27 Feb 2014 08:40:55 -0500 >Subject: [PATCH] Bug 11694 [QA Followup] - Don't include time when converting date string to DateTime > >--- > C4/Reserves.pm | 8 +++++++- > 1 files changed, 7 insertions(+), 1 deletions(-) > >diff --git a/C4/Reserves.pm b/C4/Reserves.pm >index 8fe0fd0..724b4e3 100644 >--- a/C4/Reserves.pm >+++ b/C4/Reserves.pm >@@ -1537,7 +1537,13 @@ be cleared when it is unsuspended. > sub ToggleSuspend { > my ( $reserve_id, $suspend_until ) = @_; > >- $suspend_until = output_pref({ dt => dt_from_string( $suspend_until ), dateformat => 'iso' }) if ( $suspend_until ); >+ $suspend_until = output_pref( >+ { >+ dt => dt_from_string($suspend_until), >+ dateformat => 'iso', >+ dateonly => 1 >+ } >+ ) if ($suspend_until); > > my $do_until = ( $suspend_until ) ? '?' : 'NULL'; > >-- >1.7.2.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 11694
:
25104
|
25697
|
25698
|
26385
|
26386