Skip to content

Commit

Permalink
Server: fix bug with multiple joins
Browse files Browse the repository at this point in the history
  • Loading branch information
mhugent committed Mar 5, 2015
1 parent 5d15a07 commit b83b59d
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/server/qgsserverprojectparser.cpp
Expand Up @@ -1349,11 +1349,6 @@ void QgsServerProjectParser::addJoinLayersForElement( const QDomElement& layerEl
}

QDomNodeList joinNodeList = vectorJoinsElem.elementsByTagName( "join" );
if ( joinNodeList.size() > 1 )
{
return;
}

for ( int i = 0; i < joinNodeList.size(); ++i )
{
QString id = joinNodeList.at( i ).toElement().attribute( "joinLayerId" );
Expand Down

2 comments on commit b83b59d

@nyalldawson
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@mhugent should this fix be backported to 2.8?

@mhugent
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, definitely

Please sign in to comment.