Fix: Liste de types de paiement était cassé

This commit is contained in:
Laurent Destailleur 2006-06-25 19:13:09 +00:00
parent 7c7fc76c75
commit 473ee5d9ef

View File

@ -1107,7 +1107,7 @@ class Form
$filterarray=array(); $filterarray=array();
if ($filtertype == 'CRDT') $filterarray=array(0,2); if ($filtertype == 'CRDT') $filterarray=array(0,2);
elseif ($filtertype == 'DBIT') $filterarray=array(1,2); elseif ($filtertype == 'DBIT') $filterarray=array(1,2);
elseif ($filtertype != '-1') $filterarray=split(',',$filtertype); elseif ($filtertype != '' && $filtertype != '-1') $filterarray=split(',',$filtertype);
$this->load_cache_types_paiements(); $this->load_cache_types_paiements();