From 510e21f5f17ef1f6ab4a1976d7ee22c6d2a3dff3 Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Tue, 11 May 2004 22:37:39 +0000 Subject: [PATCH] Se corrige pequeno bug en la funcion esAdyacente. Estaba mal usada la variable que llega como parametro. --- lib/MECON/Tiempo/Intervalo.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/MECON/Tiempo/Intervalo.php b/lib/MECON/Tiempo/Intervalo.php index c20c7d8..0cc2068 100644 --- a/lib/MECON/Tiempo/Intervalo.php +++ b/lib/MECON/Tiempo/Intervalo.php @@ -151,7 +151,7 @@ class MECON_Tiempo_Intervalo { */ function esAdyacente($intervalo) { - if ($i->fin->equal($this->inicio) || $this->fin->equal($i->inicio)) { + if ($intervalo->fin->equal($this->inicio) || $this->fin->equal($intervalo->inicio)) { return true; } return false; -- 2.43.0