[fusion-commits] r2858 - in branches/fusion-mg26: . widgets/Print

svn_fusion at osgeo.org svn_fusion at osgeo.org
Sun Jun 29 01:12:57 PDT 2014


Author: jng
Date: 2014-06-29 01:12:57 -0700 (Sun, 29 Jun 2014)
New Revision: 2858

Modified:
   branches/fusion-mg26/
   branches/fusion-mg26/widgets/Print/printablepage.php
Log:
Merged revision(s) 2857 from trunk:
#619: Allow blank titles for print widget
........



Property changes on: branches/fusion-mg26
___________________________________________________________________
Modified: svn:mergeinfo
   - /branches/fusion-mg24:2560
/sandbox/createruntimemap:2699-2708
/sandbox/jxlib-3.0:1957-2248
/sandbox/ol213:2801-2803
/sandbox/robust_error_handling:2818-2825
/trunk:2847,2850
   + /branches/fusion-mg24:2560
/sandbox/createruntimemap:2699-2708
/sandbox/jxlib-3.0:1957-2248
/sandbox/ol213:2801-2803
/sandbox/robust_error_handling:2818-2825
/trunk:2847,2850,2857

Modified: branches/fusion-mg26/widgets/Print/printablepage.php
===================================================================
--- branches/fusion-mg26/widgets/Print/printablepage.php	2014-06-29 08:11:22 UTC (rev 2857)
+++ branches/fusion-mg26/widgets/Print/printablepage.php	2014-06-29 08:12:57 UTC (rev 2858)
@@ -75,7 +75,7 @@
     $isTitle = $params['ISTITLE'];
     $isLegend = $params['ISLEGEND'];
     $isArrow = $params['ISARROW'];
-    $title = $params['TITLE'];
+    $title = array_key_exists('TITLE', $params) ? $params['TITLE'] : '';
     $scale = $params['SCALE'];
     $centerX = $params['CENTERX'];
     $centerY = $params['CENTERY'];



More information about the fusion-commits mailing list