Bugzilla – Attachment 51882 Details for
Bug 16612
Cannot set "Until date" for "Enrollment period" for Patron Categories
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 16612 - Cannot set "Until date" for "Enrollment period" for Patron Categories
Bug-16612---Cannot-set-Until-date-for-Enrollment-p.patch (text/plain), 1.35 KB, created by
Kyle M Hall (khall)
on 2016-05-27 14:19:18 UTC
(
hide
)
Description:
Bug 16612 - Cannot set "Until date" for "Enrollment period" for Patron Categories
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2016-05-27 14:19:18 UTC
Size:
1.35 KB
patch
obsolete
>From 9b4918cbd8346cf7395d5c6d2661325b97369361 Mon Sep 17 00:00:00 2001 >From: Kyle M Hall <kyle@bywatersolutions.com> >Date: Fri, 27 May 2016 14:12:20 +0000 >Subject: [PATCH] Bug 16612 - Cannot set "Until date" for "Enrollment period" > for Patron Categories > >Attempting to set an "Until date" date for "Enrollment period" will >result in the date being accepted but not saved. > >Test Plan: >1) Attempt to set an enrollment period until date for a new patron category >2) Note the period is not saved >3) Apply this patch >4) Attempt to set the enrollment period date again >5) This time it should save! >--- > admin/categories.pl | 10 ++++++++-- > 1 file changed, 8 insertions(+), 2 deletions(-) > >diff --git a/admin/categories.pl b/admin/categories.pl >index 7d4e8d3..aeb12ee 100755 >--- a/admin/categories.pl >+++ b/admin/categories.pl >@@ -95,8 +95,14 @@ elsif ( $op eq 'add_validate' ) { > > my $is_a_modif = $input->param("is_a_modif"); > >- if ( $enrolmentperioddate ) { >- $enrolmentperioddate = output_pref({ dt => dt_from_string($enrolmentperioddate), dateformat => 'iso' }); >+ if ($enrolmentperioddate) { >+ $enrolmentperioddate = output_pref( >+ { >+ dt => dt_from_string($enrolmentperioddate), >+ dateformat => 'iso', >+ dateonly => 1, >+ } >+ ); > } > > if ($is_a_modif) { >-- >2.1.4
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 16612
:
51882
|
51883
|
52549