Bugzilla – Attachment 84966 Details for
Bug 21829
Date displays as a datetime in notices
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 21829: Correctly format dateexpiry in notices (date only)
Bug-21829-Correctly-format-dateexpiry-in-notices-d.patch (text/plain), 1.14 KB, created by
Kyle M Hall (khall)
on 2019-02-11 12:15:44 UTC
(
hide
)
Description:
Bug 21829: Correctly format dateexpiry in notices (date only)
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2019-02-11 12:15:44 UTC
Size:
1.14 KB
patch
obsolete
>From 940e47ae09fbe1d7aada0657e50c9f23ff2430b7 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Wed, 14 Nov 2018 09:38:01 -0300 >Subject: [PATCH] Bug 21829: Correctly format dateexpiry in notices (date only) > >dateexpiry is a date, we should not display the time >part in notice. > >Test plan: >Create a notice with borrowers.dateexpiry, generate this notice. >The value should be displayed without the time part > >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> >--- > C4/Letters.pm | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/C4/Letters.pm b/C4/Letters.pm >index 0f2378d660..bf94c0e2ba 100644 >--- a/C4/Letters.pm >+++ b/C4/Letters.pm >@@ -785,7 +785,7 @@ sub _parseletter { > my $values = $values_in ? { %$values_in } : {}; > > if ( $table eq 'borrowers' && $values->{'dateexpiry'} ){ >- $values->{'dateexpiry'} = output_pref({ str => $values->{dateexpiry}, dateonly => 1 }); >+ $values->{'dateexpiry'} = output_pref({ dt => dt_from_string( $values->{'dateexpiry'} ), dateonly => 1 }); > } > > if ( $table eq 'reserves' && $values->{'waitingdate'} ) { >-- >2.17.2 (Apple Git-113)
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 21829
:
82329
|
82330
|
84965
| 84966 |
84967