You appear to be a bot. Output may be restricted
Description
Ensure the pagination links don't attempt to perform any actionsREQUEST_URI is used by BW_List_Table::pagination() to build the paging links we need to ensure that only pagination is performed. So we need to remove the fields that can be set on the action links
Usage
oik_clone_reset_request_uri();
Parameters
Returns
voidSource
File name: oik-clone/admin/oik-clone.phpLines:
1 to 6 of 6
function oik_clone_reset_request_uri() { //$request_uri = $_SERVER['REQUEST_URI']; $request_uri = remove_query_arg( array( "action", "source", "target" ) ); //$request_uri = add_query_arg( "_ $_SERVER['REQUEST_URI'] = esc_url( $request_uri ); }View on GitHub