From: Gonzalo Merayo Date: Mon, 30 Jun 2003 16:51:51 +0000 (+0000) Subject: Se cambio la funcionalidad del metodo Marco::addTitle. Ahora agrega como addBody... X-Git-Tag: svn_import~439 X-Git-Url: https://git.llucax.com/mecon/meconlib.git/commitdiff_plain/ee6749f483029245119eb85399a58c6ac68db322 Se cambio la funcionalidad del metodo Marco::addTitle. Ahora agrega como addBody, no setea --- diff --git a/lib/MECON/Marco.php b/lib/MECON/Marco.php index 575718e..6bae9f7 100644 --- a/lib/MECON/Marco.php +++ b/lib/MECON/Marco.php @@ -140,7 +140,6 @@ class Marco extends HTML_Page { $this->_menu = new MenuPrincipal ($this->_configuracion); $this->_pie = new Pie ($this->_configuracion); $this->_contenido = array (); - $this->_contenido[] = '
'; $this->_titulo2 = ''; } @@ -275,7 +274,6 @@ class Marco extends HTML_Page { */ function _body_display() // ~X2C { - $this->_contenido[] = '
 '; $body = array ( 'copete' => $this->_copete->toHtml(), 'body' => $this->_contenido, 'pie' => $this->_pie->toHtml(), @@ -296,7 +294,7 @@ class Marco extends HTML_Page { */ function addTitle($titulo) // ~X2C { - $this->_titulo2 = ' - '.$titulo; + $this->_titulo2.= ' - '.$titulo; } // -X2C