[Mapbender-commits] r7729 - trunk/mapbender/http/print/classes

svn_mapbender at osgeo.org svn_mapbender at osgeo.org
Thu Mar 31 10:19:10 EDT 2011


Author: mh
Date: 2011-03-31 07:19:10 -0700 (Thu, 31 Mar 2011)
New Revision: 7729

Modified:
   trunk/mapbender/http/print/classes/mbParagraphDecorator.php
Log:
set utf8_decode for comments 

Modified: trunk/mapbender/http/print/classes/mbParagraphDecorator.php
===================================================================
--- trunk/mapbender/http/print/classes/mbParagraphDecorator.php	2011-03-31 09:12:58 UTC (rev 7728)
+++ trunk/mapbender/http/print/classes/mbParagraphDecorator.php	2011-03-31 14:19:10 UTC (rev 7729)
@@ -48,7 +48,7 @@
 		$this->pdf->objPdf->SetLineWidth($this->conf->border_width);
 		$this->pdf->objPdf->SetXY($this->conf->x_ul, $this->conf->y_ul);
 		$this->pdf->objPdf->setFont($this->conf->font_family, "", $this->conf->font_size);
-		$this->pdf->objPdf->Cell($this->conf->width, $this->conf->height, $this->value, $this->conf->border, 0, $this->conf->align, $this->conf->fill);
+		$this->pdf->objPdf->Cell($this->conf->width, $this->conf->height, utf8_decode($this->value), $this->conf->border, 0, $this->conf->align, $this->conf->fill);
 	}
 	
 



More information about the Mapbender_commits mailing list