[mapserver-commits] r7283 - branches/branch-5-0/mapserver
svn at osgeo.org
svn at osgeo.org
Sun Jan 20 11:11:29 EST 2008
Author: sdlime
Date: 2008-01-20 11:11:29 -0500 (Sun, 20 Jan 2008)
New Revision: 7283
Modified:
branches/branch-5-0/mapserver/mapfile.c
Log:
Fixed missing call to msyylex() for updating resolution via URL. (bug #2471)
Modified: branches/branch-5-0/mapserver/mapfile.c
===================================================================
--- branches/branch-5-0/mapserver/mapfile.c 2008-01-20 16:10:30 UTC (rev 7282)
+++ branches/branch-5-0/mapserver/mapfile.c 2008-01-20 16:11:29 UTC (rev 7283)
@@ -4711,6 +4711,8 @@
return msUpdateReferenceMapFromString(&(map->reference), string, MS_TRUE);
case(RESOLUTION):
msyystate = MS_TOKENIZE_URL_STRING; msyystring = string;
+ msyylex();
+
if(getDouble(&(map->resolution)) == -1) break;
break;
case(SCALEBAR):
More information about the mapserver-commits
mailing list