X-Git-Url: https://git.llucax.com/mecon/meconlib.git/blobdiff_plain/59ef1bb1bc43dce4e8add06eac8e56ea9a043661..c97c1e9e59f9f31dd1519af794853e320de7c4e4:/lib/MECON/PDF/Texto.php?ds=inline diff --git a/lib/MECON/PDF/Texto.php b/lib/MECON/PDF/Texto.php index 5784948..fa54b06 100644 --- a/lib/MECON/PDF/Texto.php +++ b/lib/MECON/PDF/Texto.php @@ -250,7 +250,12 @@ class MECON_PDF_Texto extends MECON_PDF_Contenido { * @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)); + } } /**