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

(-)a/patroncards/members-search.pl (-2 / +2 lines)
Lines 26-31 use C4::Auth; Link Here
26
use C4::Output;
26
use C4::Output;
27
use C4::Members;
27
use C4::Members;
28
use C4::Debug;
28
use C4::Debug;
29
use Koha::DateUtils;
29
30
30
my $cgi = CGI->new;
31
my $cgi = CGI->new;
31
32
Lines 103-109 if ($member || $category) { Link Here
103
            borrowernotes       => $results->[$i]{'borrowernotes'},
104
            borrowernotes       => $results->[$i]{'borrowernotes'},
104
            sort1               => $results->[$i]{'sort1'},
105
            sort1               => $results->[$i]{'sort1'},
105
            sort2               => $results->[$i]{'sort2'},
106
            sort2               => $results->[$i]{'sort2'},
106
            dateexpiry          => C4::Dates->new($results->[$i]{'dateexpiry'},'iso')->output('syspref'),
107
            dateexpiry          => output_pref({ dt => dt_from_string( $results->[$i]{'dateexpiry'} , 'iso' ), dateonly => 1 }),
107
        );
108
        );
108
        push(@resultsdata, \%row);
109
        push(@resultsdata, \%row);
109
    }
110
    }
110
- 

Return to bug 13813