GEstion des numeros gratuits

This commit is contained in:
Rodolphe Quiedeville 2007-07-12 09:51:20 +00:00
parent bfd158b2f4
commit 5e2476fa72

View File

@ -303,8 +303,6 @@ class TelephonieTarifGrille {
function UpdateTarif($grille_id, $tarif_id, $temporel, $fixe, $user) function UpdateTarif($grille_id, $tarif_id, $temporel, $fixe, $user)
{
if ($temporel > 0)
{ {
$tarifs_linked = array(); $tarifs_linked = array();
@ -332,14 +330,11 @@ class TelephonieTarifGrille {
dolibarr_syslog($this->db->error()); dolibarr_syslog($this->db->error());
} }
foreach($tarifs_linked as $tarif) foreach($tarifs_linked as $tarif)
{ {
$this->_DBUpdateTarif($grille_id, $tarif, $temporel, $fixe, $user); $this->_DBUpdateTarif($grille_id, $tarif, $temporel, $fixe, $user);
} }
*/ */
}
return $result; return $result;
} }