[mapserver-commits] r10798 - trunk/mapserver/mapscript/php

svn at osgeo.org svn at osgeo.org
Mon Dec 13 10:26:53 EST 2010


Author: aboudreault
Date: 2010-12-13 07:26:53 -0800 (Mon, 13 Dec 2010)
New Revision: 10798

Modified:
   trunk/mapserver/mapscript/php/style.c
Log:
Fixed php/mapscript to compile with rfc 64 changes

Modified: trunk/mapserver/mapscript/php/style.c
===================================================================
--- trunk/mapserver/mapscript/php/style.c	2010-12-12 21:33:46 UTC (rev 10797)
+++ trunk/mapserver/mapscript/php/style.c	2010-12-13 15:26:53 UTC (rev 10798)
@@ -445,11 +445,11 @@
     
     php_style = (php_style_object *) zend_object_store_get_object(zobj TSRMLS_CC);
 
-    if (php_style->style->_geomtransform == MS_GEOMTRANSFORM_NONE ||
-        !php_style->style->_geomtransformexpression)
+    if (php_style->style->_geomtransform.type == MS_GEOMTRANSFORM_NONE ||
+        !php_style->style->_geomtransform.string)
         RETURN_STRING("", 1);
 
-    RETURN_STRING(php_style->style->_geomtransformexpression, 1);
+    RETURN_STRING(php_style->style->_geomtransform.string, 1);
 }
 /* }}} */
 



More information about the mapserver-commits mailing list