]> git.llucax.com Git - mecon/ai.git/blobdiff - lib/AI/DBObject.php
Se agrega un link para agregar un item nuevo cuando se está modificando o
[mecon/ai.git] / lib / AI / DBObject.php
index 8d8297c0210bb86ecd68686d578d8047a043aa77..7c162c8e20e0eaa35d7f185b443bbf34bbce33f3 100644 (file)
@@ -74,7 +74,7 @@ class AI_DBObject {
      */
     function cargar($db) // ~X2C
     {
      */
     function cargar($db) // ~X2C
     {
-               $id_field = $this->conf['id'];
+        $id_field = $this->conf['id'];
         $id = intval($this->$id_field);
         if (is_a($db, 'db_result')) {
             $result = $db;
         $id = intval($this->$id_field);
         if (is_a($db, 'db_result')) {
             $result = $db;
@@ -97,9 +97,9 @@ class AI_DBObject {
                 "No hay más resultados en la DB [id=$id]");
         }
         // Asigno valores al objeto.
                 "No hay más resultados en la DB [id=$id]");
         }
         // Asigno valores al objeto.
-               foreach ($row as $key => $val) {
-                       $this->$key = $val;
-               }
+        foreach ($row as $key => $val) {
+            $this->$key = $val;
+        }
         return true;
     }
     // -X2C
         return true;
     }
     // -X2C