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

svn_mapbender at osgeo.org svn_mapbender at osgeo.org
Tue Aug 17 08:37:21 EDT 2010


Author: astrid_emde
Date: 2010-08-17 12:37:20 +0000 (Tue, 17 Aug 2010)
New Revision: 6765

Modified:
   trunk/mapbender/http/print/classes/mbTextDecorator.php
Log:
provide Umlaute ?\195?\150?\195?\156?\195?\132 in print output utf8_decode

Modified: trunk/mapbender/http/print/classes/mbTextDecorator.php
===================================================================
--- trunk/mapbender/http/print/classes/mbTextDecorator.php	2010-08-17 11:44:34 UTC (rev 6764)
+++ trunk/mapbender/http/print/classes/mbTextDecorator.php	2010-08-17 12:37:20 UTC (rev 6765)
@@ -52,7 +52,7 @@
 	public function decorate() {
 		$this->pdf->objPdf->setTextColor(0, 0, 0);
 		$this->pdf->objPdf->setFont($this->conf->font_family, "", $this->conf->font_size);
-		$this->pdf->objPdf->Text($this->conf->x_ul, $this->conf->y_ul, $this->value);
+		$this->pdf->objPdf->Text($this->conf->x_ul, $this->conf->y_ul, utf8_decode($this->value));
 	}
 	
 



More information about the Mapbender_commits mailing list