Commit 9c6c417e by Frédéric

Tarif filter

parent 4c38e48e
...@@ -30,13 +30,13 @@ class TarifFilter ...@@ -30,13 +30,13 @@ class TarifFilter
if(!empty(floatval($item[1]))) { if(!empty(floatval($item[1]))) {
if(floatval($item[1]) != floatval($item[2])) { if(floatval($item[1]) != floatval($item[2])) {
$amount = ': de ' . $item[1] . ' € à ' . $item[2] . ' €'; $amount = 'de ' . $item[1] . ' € à ' . $item[2] . ' €';
} else { } else {
$amount = ': ' . $item[1] . ' €'; $amount = '' . $item[1] . ' €';
} }
} }
$data[$item[0]] = '<strong>' . $item[0] .$complement .' </strong> '.$amount; $data[$item[0]] = '<span>' . $item[0] .$complement .' </span> : '.$amount;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment