Skip to content

Commit

Permalink
don't escape ogc filters
Browse files Browse the repository at this point in the history
  • Loading branch information
tbonfort committed Sep 19, 2012
1 parent c8d79da commit 3059629
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions mapogcfilter.c
Original file line number Diff line number Diff line change
Expand Up @@ -629,9 +629,7 @@ int FLTApplySimpleSQLFilter(FilterEncodingNode *psNode, mapObj *map,
if(lp->filter.string && lp->filter.type == MS_EXPRESSION)
pszBuffer = msStringConcatenate(pszBuffer, ")");

escapedTextString = msStringEscape(pszBuffer);
msLoadExpressionString(&lp->filter, escapedTextString);
free(escapedTextString);
msLoadExpressionString(&lp->filter, pszBuffer);
free(szExpression);
}

Expand Down

0 comments on commit 3059629

Please sign in to comment.