Lines 295-300
controller, and thus shouldn't be called twice in it.
Link Here
|
295 |
$c->stash('koha.pagination.base_total' => $result_set->count); |
295 |
$c->stash('koha.pagination.base_total' => $result_set->count); |
296 |
$c->stash('koha.pagination.query_params' => $args); |
296 |
$c->stash('koha.pagination.query_params' => $args); |
297 |
|
297 |
|
|
|
298 |
$c->dbic_validate_operators( { filtered_params => $filtered_params } ); |
299 |
|
298 |
# Generate the resultset |
300 |
# Generate the resultset |
299 |
my $objects_rs = $result_set->search( $filtered_params, $attributes ); |
301 |
my $objects_rs = $result_set->search( $filtered_params, $attributes ); |
300 |
# Stash the page total if requires, total otherwise |
302 |
# Stash the page total if requires, total otherwise |
301 |
- |
|
|