Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 97470 Details for
Bug 148257
Include upstream patch to correct KDE bug 117882
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch to kde-base/kmail to fix KDE bug 117882
kmail-3.5.4-send-ampersand.diff (text/plain), 804 bytes, created by
Robert Clark
on 2006-09-19 16:13:23 UTC
(
hide
)
Description:
Patch to kde-base/kmail to fix KDE bug 117882
Filename:
MIME Type:
Creator:
Robert Clark
Created:
2006-09-19 16:13:23 UTC
Size:
804 bytes
patch
obsolete
>--- kmail/kmsender.cpp 2006-05-22 14:10:53.000000000 -0400 >+++ kmail/kmsender.cpp 2006-09-19 19:08:13.000000000 -0400 >@@ -1052,12 +1052,14 @@ > QString query = "headers=0&from="; > query += KURL::encode_string( sender ); > >- if ( !to.empty() ) >- query += "&to=" + to.join( "&to=" ); >- if ( !cc.empty() ) >- query += "&cc=" + cc.join( "&cc=" ); >- if ( !bcc.empty() ) >- query += "&bcc=" + bcc.join( "&bcc=" ); >+ StringList::Iterator it; >+ >+ for ( it = to.begin(); it != to.end(); ++it ) >+ query += "&to=" + KURL::encode_string(*it); >+ for ( it = cc.begin(); it != cc.end(); ++it ) >+ query += "&cc=" + KURL::encode_string(*it); >+ for ( it = bcc.begin(); it != bcc.end(); ++it ) >+ query += "&bcc=" + KURL::encode_string(*it); > > KMTransportInfo * ti = mSender->transportInfo(); >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 148257
:
97470
|
97471