diff --git a/htdocs/telephonie/adsl/ligneadsl.class.php b/htdocs/telephonie/adsl/ligneadsl.class.php
index 046bff5d62c5d4ec11c9c31727f06b1765919aec..cf7220f826678919723a2484f06d5e56911399b7 100644
--- a/htdocs/telephonie/adsl/ligneadsl.class.php
+++ b/htdocs/telephonie/adsl/ligneadsl.class.php
@@ -160,7 +160,7 @@ class LigneAdsl {
   function fetch($ligne, $id = 0)
     {
       $sql = "SELECT l.rowid, l.fk_client, l.fk_client_install, l.fk_client_facture, l.fk_fournisseur, l.numero_ligne, l.note, l.statut, l.fk_commercial";
-      $sql .= ", l.ip, l.login, l.password";
+      $sql .= ", l.ip, l.login, l.password, l.prix";
       $sql .= " , t.intitule AS type";
       $sql .= " FROM ".MAIN_DB_PREFIX."telephonie_adsl_ligne as l";
       $sql .= " , ".MAIN_DB_PREFIX."telephonie_adsl_type as t";
@@ -191,6 +191,7 @@ class LigneAdsl {
 	      $this->fournisseur_id    = $obj->fk_fournisseur;
 	      $this->commercial_id     = $obj->fk_commercial;
 	      $this->type              = $obj->type;
+	      $this->prix              = $obj->prix;
 	      $this->statut            = $obj->statut;
 
 	      $this->ip                = $obj->ip;