Skip to content

Commit

Permalink
Fix #9314
Browse files Browse the repository at this point in the history
  • Loading branch information
elpaso authored and mhugent committed Jan 12, 2014
1 parent b4d082f commit d82a399
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mapserver/qgswmsserver.cpp
Expand Up @@ -2055,7 +2055,7 @@ bool QgsWMSServer::testFilterStringSafety( const QString& filter ) const

void QgsWMSServer::groupStringList( QStringList& list, const QString& groupString )
{
//group contens within single quotes together
//group contents within single quotes together
bool groupActive = false;
int startGroup = -1;
int endGroup = -1;
Expand Down Expand Up @@ -2090,7 +2090,7 @@ void QgsWMSServer::groupStringList( QStringList& list, const QString& groupStrin
list[startGroup] = concatString;
for ( int j = startGroup + 1; j <= endGroup; ++j )
{
list.removeAt( j );
list.removeAt( startGroup + 1 );
--i;
}
}
Expand Down

0 comments on commit d82a399

Please sign in to comment.