Lines 451-456
if ( $op eq 'else' ) {
Link Here
|
451 |
my $from_dt = $from && eval { dt_from_string($from) }; |
451 |
my $from_dt = $from && eval { dt_from_string($from) }; |
452 |
my $to_dt = $to && eval { dt_from_string($to) }; |
452 |
my $to_dt = $to && eval { dt_from_string($to) }; |
453 |
|
453 |
|
|
|
454 |
if ( ( my $from_pref = C4::Context->preference('SuggestionsDefaultManagedFrom') ) && $field eq 'manageddate' ) { |
455 |
$from_dt ||= dt_from_string()->subtract( days => $from_pref ); |
456 |
$template->param( "${field}_from" => $from_dt ); |
457 |
} |
454 |
if ( $from_dt || $to_dt ) { |
458 |
if ( $from_dt || $to_dt ) { |
455 |
my $dtf = Koha::Database->new->schema->storage->datetime_parser; |
459 |
my $dtf = Koha::Database->new->schema->storage->datetime_parser; |
456 |
if ( $from_dt && $to_dt ) { |
460 |
if ( $from_dt && $to_dt ) { |
457 |
- |
|
|