From 1aa774a935f76496935ec5b00c00dcef4cd7288e Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Fri, 7 Nov 2003 18:04:16 +0000 Subject: [PATCH 1/1] Se ponen bien los ALT. --- lib/MECON/HTML/Tabla.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/MECON/HTML/Tabla.php b/lib/MECON/HTML/Tabla.php index 5042427..78c3a74 100644 --- a/lib/MECON/HTML/Tabla.php +++ b/lib/MECON/HTML/Tabla.php @@ -436,7 +436,7 @@ class MECON_HTML_Tabla extends HTML_Table { } switch ($id) { case 'nuevo': - $img = new MECON_HTML_Image('/MECON/images/general_nuevo', '-<'); + $img = new MECON_HTML_Image('/MECON/images/general_nuevo', '->'); // Si no tiene titulo, le pone titulo por defecto. if (!$link->getContents()) { $link->setContents('Nuevo'); @@ -445,7 +445,7 @@ class MECON_HTML_Tabla extends HTML_Table { $this->updateCabecera($link, 'derecha'); break; case 'nuevos': - $img = new MECON_HTML_Image('/MECON/images/general_muchos_nuevo', '-<'); + $img = new MECON_HTML_Image('/MECON/images/general_muchos_nuevo', '->'); // Si no tiene titulo, le pone titulo por defecto. if (!$link->getContents()) { $link->setContents('Nuevos'); @@ -463,7 +463,7 @@ class MECON_HTML_Tabla extends HTML_Table { $this->updateCabecera($link, 'derecha'); break; case 'siguiente': - $img = new MECON_HTML_Image('/MECON/images/general_posterior', '-<'); + $img = new MECON_HTML_Image('/MECON/images/general_posterior', '->'); // Si no tiene titulo, le pone titulo por defecto. if (!$link->getContents()) { $link->setContents('Siguiente'); @@ -472,7 +472,7 @@ class MECON_HTML_Tabla extends HTML_Table { $this->updatePie($link, 'derecha'); break; case 'volver': - $img = new MECON_HTML_Image('/MECON/images/general_anterior', '>-'); + $img = new MECON_HTML_Image('/MECON/images/general_anterior', '<-'); // Si no tiene titulo, le pone titulo por defecto. $cont = $link->getContents() ? $link->getContents() : 'Volver'; $link->setContents($img); @@ -480,7 +480,7 @@ class MECON_HTML_Tabla extends HTML_Table { $this->updateCabecera($link, 'izquierda'); break; case 'anterior': - $img = new MECON_HTML_Image('/MECON/images/general_anterior', '>-'); + $img = new MECON_HTML_Image('/MECON/images/general_anterior', '<-'); // Si no tiene titulo, le pone titulo por defecto. $cont = $link->getContents() ? $link->getContents() : 'Anterior'; $link->setContents($img); -- 2.43.0