SVN commit 887083 by weilbach: Backport GData tagging fix from Mehrdat. M +5 -0 gdata.cpp --- branches/KDE/4.1/kdepimlibs/kblog/gdata.cpp #887082:887083 @@ -288,6 +288,11 @@ atomMarkup += "
"; atomMarkup += post->content(); // FIXME check for Utf atomMarkup += "
"; + QList::ConstIterator it = post->tags().constBegin(); + QList::ConstIterator end = post->tags().constEnd(); + for( ; it != end; ++it ){ + atomMarkup += ""; + } atomMarkup += ""; if ( !fullName().isEmpty() ) { atomMarkup += "" + fullName() + "";