Changeset 7584
- Timestamp:
- 05/12/08 18:28:17 (2 months ago)
- Files:
-
- trunk/mapserver/maptemplate.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/mapserver/maptemplate.c
r7573 r7584 968 968 } 969 969 970 *line = processLine(mapserv, *line, NULL, BROWSE); /* do substitutions, non-query tags only yet */ 971 970 972 if(getInlineTag("resultset", *line, &tag) != MS_SUCCESS) { 971 973 msSetError(MS_WEBERR, "Malformed resultset tag.", "processResultSetTag()"); … … 979 981 free(*line); *line = preTag; 980 982 981 if(lp->resultcache && lp->resultcache->numresults > 0) { 982 /* output the tag content */ 983 if(lp->resultcache && lp->resultcache->numresults > 0) { 984 /* probably will need a while-loop here to handle multiple instances of [feature ...] tags */ 985 if(processFeatureTag(mapserv, &tag, lp) != MS_SUCCESS) 986 return(MS_FAILURE); /* TODO: how to handle */ 983 987 *line = msStringConcatenate(*line, tag); 984 988 }
