]> git.llucax.com Git - mecon/meconlib.git/commitdiff
(no commit message)
authorMartín Marrese <marrese@gmail.com>
Mon, 7 Apr 2003 17:01:07 +0000 (17:01 +0000)
committerMartín Marrese <marrese@gmail.com>
Mon, 7 Apr 2003 17:01:07 +0000 (17:01 +0000)
marco/php/marco/Copete.php
marco/php/marco/Pie.php

index 33199192768b1b5522c86d7e141cebf0aef9056b..3b355a48bca86a0a6c609242f4ad5ed768a9cf4e 100644 (file)
@@ -59,13 +59,12 @@ class Copete extends PEAR {
      */
     function toHtml () 
     {
-        $TABLA = new Tabla('width="760" align="center"');
+        $TABLA = new Tabla('width="100%" align="center"');
         
         $row = array ('<img src="./images/copete.jpg">');
         $TABLA->agregarFila($row);
-        $TABLA->align(0,0,"center");
-        
-        return $TABLA->toHtml();        
+        $TABLA->align(0,0,"center");        
+        return $TABLA->toHtml(1);        
     }
 }
 ?>
index fed898889b06326237463e04f94491d5ead04f7d..047fd20d332655dfe56a81220b9fab94dc009a91 100644 (file)
@@ -60,12 +60,12 @@ class Pie extends PEAR {
      */
     function toHtml () 
     {
-        $TABLA = new Tabla('width=760 bgcolor="#CCCCCC" align="center"');
+        $TABLA = new Tabla('width="100%" bgcolor="#CCCCCC" align="center"');
         $row = array ($this->_configuracion['pie_sistema']);
         $TABLA->agregarFila($row);
         $TABLA->align(0,0,"center");
         $TABLA->setCellBgcolor(0,0,'#CCCCCC');
-        return $TABLA->toHtml();
+        return $TABLA->toHtml(1);
     }
 }
 ?>