View | Details | Raw Unified | Return to bug 30129
Collapse All | Expand All

(-)a/C4/Reports/Guided.pm (-2 / +1 lines)
Lines 740-746 sub get_saved_reports { Link Here
740
            $date = eval { output_pref( { dt => dt_from_string( $date ), dateonly => 1, dateformat => 'iso' }); };
740
            $date = eval { output_pref( { dt => dt_from_string( $date ), dateonly => 1, dateformat => 'iso' }); };
741
            push @cond, "DATE(last_modified) = ? OR
741
            push @cond, "DATE(last_modified) = ? OR
742
                         DATE(last_run) = ?";
742
                         DATE(last_run) = ?";
743
            push @args, $date, $date, $date;
743
            push @args, $date, $date;
744
        }
744
        }
745
        if (my $author = $filter->{author}) {
745
        if (my $author = $filter->{author}) {
746
            $author = "%$author%";
746
            $author = "%$author%";
747
- 

Return to bug 30129