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

(-)a/Koha/REST/V1/Biblios.pm (-2 / +1 lines)
Lines 619-625 sub list { Link Here
619
        if ( $c->req->headers->accept =~ m/application\/json(;.*)?$/ ) {
619
        if ( $c->req->headers->accept =~ m/application\/json(;.*)?$/ ) {
620
            return $c->render(
620
            return $c->render(
621
                status => 200,
621
                status => 200,
622
                json   => $biblios->to_api
622
                json   => $c->objects->to_api( $biblios ),
623
            );
623
            );
624
        }
624
        }
625
        elsif (
625
        elsif (
626
- 

Return to bug 32734