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

(-)a/Koha/Item.pm (-2 / +5 lines)
Lines 818-824 sub active_display_item { Link Here
818
                -or => [
818
                -or => [
819
                    { 'display.end_date' => undef },
819
                    { 'display.end_date' => undef },
820
                    { 'display.end_date' => { '>=' => $dtf->format_date($today) } }
820
                    { 'display.end_date' => { '>=' => $dtf->format_date($today) } }
821
                ]
821
                ],
822
                -or => [
823
                    { 'me.date_remove' => undef },
824
                    { 'me.date_remove' => { '>=' => $dtf->format_date($today) } }
825
                ],
822
            ]
826
            ]
823
        },
827
        },
824
        { join => 'display' }
828
        { join => 'display' }
825
- 

Return to bug 14962