]> git.donarmstrong.com Git - roundcube.git/blob - debian/patches/fix-599586.patch
Imported Debian patch 0.5.2+dfsg-1
[roundcube.git] / debian / patches / fix-599586.patch
1 Fix #599586 which was caused by duplicate boundaries. The fix is to
2 simply use _addMixedPart from original Mail_Mime class which is recent
3 enough in our case.
4
5 --- roundcube/program/include/rcube_mail_mime.php~      2009-05-01 19:58:12.000000000 +0200
6 +++ roundcube/program/include/rcube_mail_mime.php       2010-10-18 19:31:33.751930400 +0200
7 @@ -102,12 +102,12 @@
8     * @return object  The multipart/mixed mimePart object
9     * @access private
10     */
11 -  function &_addMixedPart()
12 +  /* function &_addMixedPart()
13    {
14      $params['content_type'] = $this->_headers['Content-Type'] ? $this->_headers['Content-Type'] : 'multipart/mixed';
15      $ret = new Mail_mimePart('', $params);
16      return $ret;
17 -  }
18 +  } */
19    
20    
21    /**