Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
with
2 additions
and
2 deletions.
-
+2
−2
src/mapserver/qgswmsserver.cpp
|
@@ -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; |
|
@@ -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; |
|
|
} |
|
|
} |
|
|
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.