From acce91f0df3379c56dee46eca2faf4d1083ea45e Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Sun, 13 Mar 2005 02:07:58 +0000 Subject: [PATCH] Bugfix. Se buscaba mal la cantidad de intentos de un inscripto para una entrega. --- src/T/Intento.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/T/Intento.php b/src/T/Intento.php index 2adb952..1b71b49 100644 --- a/src/T/Intento.php +++ b/src/T/Intento.php @@ -85,8 +85,8 @@ EOT; $entrega->getFrom($inscripto->curso_id, $this->ejercicio, $this->entrega); if (!($entrega->desde <= $date and $entrega->hasta >= $date)) return 'El ejercicio está siendo entregado fuera de fecha'; $intento = DB_DataObject::factory('intento'); - $intento->id_entrega = $entrega->id; - $intento->id_inscripto = $inscripto->id; + $intento->entrega_id = $entrega->id; + $intento->inscripto_id = $inscripto->id; $cant = $intento->find(); $this->intento = 1 + $cant; $this->id_entrega = $entrega->id; -- 2.43.0