FIX: Replaced deprecated call

This commit is contained in:
Raphaël Doursenaud 2014-09-18 15:20:48 +02:00 committed by Raphaël Doursenaud
parent eea9a76589
commit a7964c4a9a
2 changed files with 3 additions and 3 deletions

View File

@ -63,7 +63,7 @@ if ($action == 'ventil') {
$cpt = 0;
foreach ( $mesCasesCochees as $maLigneCochee ) {
// print '<div><font color="red">id selectionnee : '.$monChoix."</font></div>";
$maLigneCourante = split("_", $maLigneCochee);
$maLigneCourante = explode("_", $maLigneCochee);
$monId = $maLigneCourante[0];
$monNumLigne = $maLigneCourante[1];
$monCompte = $mesCodesVentilChoisis[$monNumLigne];
@ -234,4 +234,4 @@ if ($result) {
}
$db->close();
llxFooter();
llxFooter();

View File

@ -65,7 +65,7 @@ if ($action == 'ventil') {
foreach ( $mesCasesCochees as $maLigneCochee ) {
// print '<div><font color="red">id selectionnee : '.$monChoix."</font></div>";
$maLigneCourante = split("_", $maLigneCochee);
$maLigneCourante = explode("_", $maLigneCochee);
$monId = $maLigneCourante[0];
$monNumLigne = $maLigneCourante[1];
$monCompte = $mesCodesVentilChoisis[$monNumLigne];