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

(-)a/svc/holds (-2 lines)
Lines 62-68 print $input->header( -type => 'text/plain', -charset => 'UTF-8' ); Link Here
62
my $holds_rs = $schema->resultset('Reserve')->search(
62
my $holds_rs = $schema->resultset('Reserve')->search(
63
    { borrowernumber => $borrowernumber },
63
    { borrowernumber => $borrowernumber },
64
    {
64
    {
65
        prefetch => { 'item'                => 'biblio' },
66
        order_by => { "-$sorting_direction" => $sorting_column }
65
        order_by => { "-$sorting_direction" => $sorting_column }
67
    }
66
    }
68
);
67
);
69
- 

Return to bug 13923