0000009: ereg n'est plus supporté, a changer par preg_match, preg_match_all,preg_*
This commit is contained in:
Dany De Bontridder 2010-10-30 15:27:34 +00:00
parent 1a5975ad86
commit 9d72c3e1e0
6 changed files with 214 additions and 180 deletions

View file

@ -73,7 +73,8 @@ $array=array(
array(31,'IBOX'),
array(32,'Acc_Operation & children'),
array(33,'Ledger : reverse op'),
array(34,'Reconciliation')
array(34,'Reconciliation'),
array(35,'Bilan')
);
$r='<form method="get">';
$r.='<select name="test_select" >';
@ -293,6 +294,10 @@ case 34:
require_once('class_acc_reconciliation.php');
Acc_Reconciliation::test_me();
break;
case 35:
require_once('class_acc_bilan.php');
Acc_Bilan::test_me();
break;
}