CVS commit by kloecker: Backport fix for bug 56592: Displaying folded Content-Description in MIME tree viewer is broken M +3 -0 partNode.cpp 1.25.2.3 --- kdenetwork/kmail/partNode.cpp #1.25.2.2:1.25.2.3 @@ -12,4 +12,5 @@ #include #include "kmmimeparttree.h" +#include /* @@ -318,4 +319,6 @@ void partNode::fillMimePartTree( KMMimeP cntSize = size; } + // remove linebreak+whitespace from folded Content-Description + cntDesc.replace( QRegExp("\\n\\s*"), " " ); kdDebug(5006) << " Inserting one item into MimePartTree" << endl;