mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-02-20 13:46:52 +01:00
Clean search_status
This commit is contained in:
parent
1efbff8fea
commit
dc3670bc91
|
|
@ -293,7 +293,6 @@ print '<input type="hidden" name="action" value="list">';
|
|||
print '<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
|
||||
print '<input type="hidden" name="sortfield" value="'.$sortfield.'">';
|
||||
print '<input type="hidden" name="sortorder" value="'.$sortorder.'">';
|
||||
print '<input type="hidden" name="search_status" value="'.$search_status.'">';
|
||||
print '<input type="hidden" name="contextpage" value="'.$contextpage.'">';
|
||||
|
||||
print_barre_liste($langs->trans("ReceivedCustomersPayments"), $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, '', $num, $nbtotalofrecords, 'bill', 0, '', '', $limit, 0, 0, 1);
|
||||
|
|
|
|||
|
|
@ -94,7 +94,7 @@ $offset = $limit * $page;
|
|||
$pageprev = $page - 1;
|
||||
$pagenext = $page + 1;
|
||||
|
||||
$search_status = GETPOST('search_status');
|
||||
$search_status = GETPOST('search_status', 'intcomma');
|
||||
|
||||
$diroutputmassaction = $conf->expedition->dir_output.'/sending/temp/massgeneration/'.$user->id;
|
||||
|
||||
|
|
|
|||
|
|
@ -75,7 +75,7 @@ $pagenext = $page + 1;
|
|||
// Initialize technical object to manage hooks of page. Note that conf->hooks_modules contains array of hook context
|
||||
$contextpage = 'receptionlist';
|
||||
|
||||
$search_status = GETPOST('search_status');
|
||||
$search_status = GETPOST('search_status', 'intcomma');
|
||||
|
||||
$object = new Reception($db);
|
||||
|
||||
|
|
|
|||
|
|
@ -43,8 +43,6 @@ $contextpage = GETPOST('contextpage', 'aZ') ?GETPOST('contextpage', 'aZ') : 'web
|
|||
$backtopage = GETPOST('backtopage', 'alpha'); // Go back to a dedicated page
|
||||
$optioncss = GETPOST('optioncss', 'aZ'); // Option for the css output (always '' except when 'print')
|
||||
|
||||
$search_status = GETPOST('search_status');
|
||||
|
||||
// Security check
|
||||
$id = GETPOST('id', 'int') ?GETPOST('id', 'int') : GETPOST('socid', 'int');
|
||||
if ($user->socid) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user