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

(-)a/authorities/authorities-home.pl (-2 / +1 lines)
Lines 89-95 if ( $op eq "do_search" ) { Link Here
89
    );
89
    );
90
    $startfrom = $startfrom // 0;
90
    $startfrom = $startfrom // 0;
91
    my ( $results, $total ) =
91
    my ( $results, $total ) =
92
      $searcher->search_auth_compat( $search_query, $startfrom,
92
      $searcher->search_auth_compat( $search_query, (($startfrom - 1) * $resultsperpage) + 1,
93
        $resultsperpage );
93
        $resultsperpage );
94
    #my ( $results, $total ) = SearchAuthorities(
94
    #my ( $results, $total ) = SearchAuthorities(
95
    #    [$marclist],  [$and_or],
95
    #    [$marclist],  [$and_or],
96
- 

Return to bug 17192