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

(-)a/authorities/authorities-home.pl (-13 / +3 lines)
Lines 94-111 if ( $op eq "do_search" ) { Link Here
94
        [$marclist], [$and_or], [$excluding], [$operator],
94
        [$marclist], [$and_or], [$excluding], [$operator],
95
        [$value], $authtypecode, $orderby
95
        [$value], $authtypecode, $orderby
96
    );
96
    );
97
    my $offset = ( $startfrom - 1 ) * $resultsperpage + 1;
97
    my ( $results, $total ) = $searcher->search_auth_compat(
98
    my ( $results, $total ) =
98
        $search_query, $startfrom, $resultsperpage
99
      $searcher->search_auth_compat( $search_query, $offset,
99
    );
100
        $resultsperpage );
101
    #my ( $results, $total ) = SearchAuthorities(
102
    #    [$marclist],  [$and_or],
103
    #    [$excluding], [$operator],
104
    #    [$value], ( $startfrom - 1 ) * $resultsperpage,
105
    #    $resultsperpage, $authtypecode,
106
    #    $orderby
107
    #);
108
109
100
110
    ( $template, $loggedinuser, $cookie ) = get_template_and_user(
101
    ( $template, $loggedinuser, $cookie ) = get_template_and_user(
111
        {
102
        {
112
- 

Return to bug 20261