Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #1210 from marcel-dancak/master
Allow LIKE operator in QGIS mapserver's GetFeatureInfo FILTER parameter
  • Loading branch information
mhugent committed Feb 21, 2014
2 parents 98401dc + ddc0f87 commit 3f5e883
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/mapserver/qgswmsserver.cpp
Expand Up @@ -2000,6 +2000,7 @@ bool QgsWMSServer::testFilterStringSafety( const QString& filter ) const
|| tokenIt->compare( "AND", Qt::CaseInsensitive ) == 0
|| tokenIt->compare( "OR", Qt::CaseInsensitive ) == 0
|| tokenIt->compare( "IN", Qt::CaseInsensitive ) == 0
|| tokenIt->compare( "LIKE", Qt::CaseInsensitive ) == 0
|| tokenIt->compare( "DMETAPHONE", Qt::CaseInsensitive ) == 0
|| tokenIt->compare( "SOUNDEX", Qt::CaseInsensitive ) == 0 )
{
Expand Down

0 comments on commit 3f5e883

Please sign in to comment.