Fix default value of filter

This commit is contained in:
Laurent Destailleur 2017-09-12 13:52:19 +02:00
parent 5dcbebbd46
commit f411476718
2 changed files with 2 additions and 2 deletions

View File

@ -44,7 +44,7 @@ $date_startyear=GETPOST('date_startyear','int');
$date_endmonth=GETPOST('date_endmonth','int');
$date_endday=GETPOST('date_endday','int');
$date_endyear=GETPOST('date_endyear','int');
$showaccountdetail = GETPOST('showaccountdetail','aZ09');
$showaccountdetail = GETPOST('showaccountdetail','aZ09')?GETPOST('showaccountdetail','aZ09'):'no';
// Security check
$socid = GETPOST('socid','int');

View File

@ -41,7 +41,7 @@ $selectcpt = GETPOST('cpt_bk');
$id = GETPOST('id', 'int');
$rowid = GETPOST('rowid', 'int');
$cancel = GETPOST('cancel','alpha');
$showaccountdetail = GETPOST('showaccountdetail','aZ09');
$showaccountdetail = GETPOST('showaccountdetail','aZ09')?GETPOST('showaccountdetail','aZ09'):'no';
$date_startmonth=GETPOST('date_startmonth','int');