*/
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;
"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