10 Nov
2015
10 Nov
'15
5:47 p.m.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15166 --- Comment #1 from Jonathan Druart <jonathan.druart@bugs.koha-community.org> --- Created attachment 44716 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=44716&action=edit Bug 15166: Make output_pref takes a string in parameter To simplify the management of dates, it would be great that output_pref takes a string in parameter. my $date = $input->param('my_date'); $date = eval { dt_from_string( $date ) } if $date; $date = output_pref({dt => $date}) if $date; Could be replace with: my $date = output_pref({ str => $input->param('my_date') }); -- You are receiving this mail because: You are watching all bug changes.