Skip to content

Commit

Permalink
fixed: admin preview pagination not working
Browse files Browse the repository at this point in the history
  • Loading branch information
jeabakker committed Nov 12, 2024
1 parent 3616261 commit 14bc059
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion views/default/csv_exporter/preview.php
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,10 @@
'limit' => $limit,
'offset' => $offset,
'count' => elgg_get_entities($options),
'base_url' => elgg_http_add_url_query_elements(elgg_get_current_url(), [
'base_url' => elgg_http_add_url_query_elements(elgg_get_current_url() . '#preview', [
'type_subtype' => empty($subtype) ? $type : "{$type}:{$subtype}",
'exportable_values' => $exportable_values,
'preview' => 1,
]),
]);

Expand Down

0 comments on commit 14bc059

Please sign in to comment.