You appear to be a bot. Output may be restricted
Description
Ensure the pagination links don't attempt to perform any actions
REQUEST_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 ie. action should not be set. Elsewhere, in set_source(), we set the name and value of the field that tells us the source of the data being loaded.
Usage
OIK_Clone_List_Table::reset_request_uri();
Parameters
Returns
void
Source
File name: oik-clone/admin/class-oik-clone-list-table.php
Lines:
1 to 7 of 7
function 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'] = $request_uri; // Don't esc_url() here ... too early. //$this->o(); }