]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/PDF/Texto.php
Agrego nueva funcionalidad a MECON_PDF_Texto.
[mecon/meconlib.git] / lib / MECON / PDF / Texto.php
index 578494814d9e80141777aedb8cc7a237323356cb..fa54b069d6d90f96f7498b58e7a40f897d8237a3 100644 (file)
@@ -250,7 +250,12 @@ class MECON_PDF_Texto extends MECON_PDF_Contenido {
      * @return void
      */
     function updateEstilo($pos, $estilo) {
      * @return void
      */
     function updateEstilo($pos, $estilo) {
-       $this->_estilos[$pos]  = array_merge($this->_estilos[$pos], $estilo);
+        if (@$this->_estilos[$pos]) {
+            $this->_estilos[$pos]  = array_merge($this->_estilos[$pos], $estilo);
+        }
+        else {
+            $this->setEstilo($pos, array_merge($this->_estilo_defecto, $estilo));
+        }
     }
     
     /**
     }
     
     /**