Showing with 10 additions and 1 deletion.
  1. +6 −0 debian/changelog
  2. +4 −1 src/app/qgspluginmanager.cpp
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
qgis (1.7.4-1) UNRELEASED; urgency=low

* new upstream bugfix release

-- Jürgen E. Fischer <jef@norbit.de> Sun, 19 Feb 2012 22:35:23 +0100

qgis (1.7.3-1) UNRELEASED; urgency=low

* new upstream bugfix release
Expand Down
5 changes: 4 additions & 1 deletion src/app/qgspluginmanager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,10 @@ void QgsPluginManager::getPluginDescriptions()
QString myPaths = settings.value( "plugins/searchPathsForPlugins", "" ).toString();
if ( !myPaths.isEmpty() )
{
myPathList.append( myPaths.split( "|" ) );
foreach( QString path, myPaths.split( "|" ) )
{
myPathList.append( path );
}
}

for ( int j = 0; j < myPathList.size(); ++j )
Expand Down