chenge _post to _get

This commit is contained in:
Ibnu Maksum
2024-09-09 14:01:55 +07:00
parent 594fab1151
commit b7fce955ac
3 changed files with 6 additions and 6 deletions

View File

@ -673,10 +673,10 @@ switch ($action) {
default:
run_hook('list_customers'); #HOOK
$search = _post('search');
$order = _post('order', 'username');
$filter = _post('filter', 'Active');
$orderby = _post('orderby', 'asc');
$search = _req('search');
$order = _req('order', 'username');
$filter = _req('filter', 'Active');
$orderby = _req('orderby', 'asc');
$order_pos = [
'username' => 0,
'created_at' => 8,