X-Git-Url: https://git.llucax.com/mecon/intranet.git/blobdiff_plain/2c5b5f3c9236e753ab69098c4855bc1cad88fc67..HEAD:/sistema/local_lib/HTML_Mensaje.php diff --git a/sistema/local_lib/HTML_Mensaje.php b/sistema/local_lib/HTML_Mensaje.php index 1be99c2..4729fc8 100644 --- a/sistema/local_lib/HTML_Mensaje.php +++ b/sistema/local_lib/HTML_Mensaje.php @@ -24,7 +24,7 @@ // | Autor: Gonzalo Merayo | // +--------------------------------------------------------------------+ // -// $Id: xmi2code.tpl.php 2 2003-06-23 18:29:20Z gmeray $ +// $Id$ // require_once 'MECON/HTML/Image.php'; @@ -38,7 +38,6 @@ require_once 'HTML/Table.php'; /** * Clase para mostrar mensajes en Intranet. * - * @package sistema_local_lib * @access public */ class HTML_Mensaje extends HTML_Table { @@ -46,19 +45,19 @@ class HTML_Mensaje extends HTML_Table { * @var string $img * @access private */ - var $_img; + var $img; /** * @var int $ancho * @access private */ - var $_ancho; + var $ancho; /** * @var string $texto * @access private */ - var $_texto; + var $texto; // ~X2C @@ -152,7 +151,7 @@ Puede ser: 'error', 'ok', 'alerta'. $tabla->updateCellAttributes(1, 1, array('background'=>'/sistemas/intranet/images/mensaje_superior.gif')); $tabla->updateCellAttributes(3, 1, array('background'=>'/sistemas/intranet/images/mensaje_inferior.gif')); - return $tabla->toHtml(); + return '
' . $tabla->toHtml() . '
'; } // -X2C @@ -172,4 +171,4 @@ Puede ser: 'error', 'ok', 'alerta'. // -X2C } // -X2C Class :HTML_Mensaje -?> \ No newline at end of file +?>