SVN commit 1005161 by mkoller: BUG: 137643 make sure HTML mail body does not overlap with "Note" above about HTML mail M +4 -0 objecttreeparser.cpp --- trunk/KDE/kdepim/kmail/objecttreeparser.cpp #1005160:1005161 @@ -1041,7 +1041,11 @@ "by clicking here.") ); htmlWriter()->queue( "

" ); } + // Make sure the body is relative, so that nothing is painted over above "Note: ..." + // if a malicious message uses absolute positioning. #137643 + htmlWriter()->queue( "
\n" ); htmlWriter()->queue( bodyText ); + htmlWriter()->queue( "
\n" ); mReader->mColorBar->setHtmlMode(); return true; }