From c97c1e9e59f9f31dd1519af794853e320de7c4e4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mart=C3=ADn=20Marrese?= Date: Wed, 21 Apr 2004 16:42:58 +0000 Subject: [PATCH] Agrego nueva funcionalidad a MECON_PDF_Texto. --- lib/MECON/PDF/Texto.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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)); + } } /** -- 2.43.0