Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 148257 | Differences between
and this patch

Collapse All | Expand All

(-)kmail/kmsender.cpp (-6 / +8 lines)
Lines 1052-1063 Link Here
1052
  QString query = "headers=0&from=";
1052
  QString query = "headers=0&from=";
1053
  query += KURL::encode_string( sender );
1053
  query += KURL::encode_string( sender );
1054
1054
1055
  if ( !to.empty() )
1055
  QStringList::ConstIterator it;
1056
    query += "&to=" + to.join( "&to=" );
1056
1057
  if ( !cc.empty() )
1057
  for ( it = to.begin(); it != to.end(); ++it )
1058
    query += "&cc=" + cc.join( "&cc=" );
1058
    query += "&to=" + KURL::encode_string(*it);
1059
  if ( !bcc.empty() )
1059
  for ( it = cc.begin(); it != cc.end(); ++it )
1060
    query += "&bcc=" + bcc.join( "&bcc=" );
1060
    query += "&cc=" + KURL::encode_string(*it);
1061
  for ( it = bcc.begin(); it != bcc.end(); ++it )
1062
    query += "&bcc=" + KURL::encode_string(*it);
1061
1063
1062
  KMTransportInfo * ti = mSender->transportInfo();
1064
  KMTransportInfo * ti = mSender->transportInfo();
1063
1065

Return to bug 148257