]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/Dependencia.php
- BugFix. Se usaba mal la variable que contiene a la base de datos (se usaba en algun...
[mecon/meconlib.git] / lib / MECON / Dependencia.php
index 572fb16f2e865938b7afaa18eb42e4b6d7a5e28c..4712ef133aac5416b6754b7d668672bfce408533 100644 (file)
@@ -76,9 +76,9 @@ class MECON_Dependencia {
      * @return void
      * @access public
      */
-    function MECON_Dependencia(&$dbh, $codep, $id = null, $database = 'CODEP') 
+    function MECON_Dependencia(&$db, $codep, $id = null, $database = 'CODEP') 
     {
-        $this->_dbh = $dbh;
+        $this->_db = $db;
         $this->_database = $database;
 
         if(!is_null($codep)) {
@@ -89,7 +89,7 @@ class MECON_Dependencia {
                 WHERE   codigo_actual = '".$this->codep."' AND
                 dependencia_esta_activa = 1";
 
-            $result = $this->_dbh->query($sql);
+            $result = $this->_db->query($sql);
         }
         else {
             $this->dependencia_id = $id;
@@ -98,7 +98,7 @@ class MECON_Dependencia {
                 FROM    ".$database.".Dependencias
                 WHERE   dependencia_id = ".$this->dependencia_id." AND
                 dependencia_esta_activa = 1";
-            $result = $this->_dbh->query($sql);
+            $result = $this->_db->query($sql);
         }
 
         if(DB::isError($result))
@@ -129,16 +129,16 @@ class MECON_Dependencia {
         if(DB::isError($result))
             trigger_error($result->getMessage("query mal hecho"), E_USER_ERROR);
         while($row = $result->fetchRow())
-            $agentes[] = new MECON_Agente($this->_db, $row[0]);
+            $agentes[] = new MECON_Agente($row[0]);
         //Contratados
         $sql = "SELECT nrodoc
                FROM Contratados.Contratados
                WHERE codep = '".$this->codep."'";
-        $result = $db->query($sql);
+        $result = $this->_db->query($sql);
         if(DB::isError($result))
             trigger_error($result->getMessage("query mal hecho"), E_USER_ERROR);
         while($row = $result->fetchRow())
-            $agentes[] = new MECON_Agente($this->_db, $row[0]);
+            $agentes[] = new MECON_Agente($row[0]);
         return $agentes;
     }