]> git.pld-linux.org Git - packages/eventum.git/blob - eventum-bug-17267.patch
- more advanced configuration, almost same as apache one
[packages/eventum.git] / eventum-bug-17267.patch
1 --- eventum-1.7.1/include/class.mail.php~       2006-05-29 00:33:40.514188072 +0300
2 +++ eventum-1.7.1/include/class.mail.php        2006-05-29 00:34:52.765806904 +0300
3 @@ -571,7 +571,11 @@
4          $to = MIME_Helper::encodeAddress($to);
5          $subject = MIME_Helper::encode($subject);
6  
7 -        $body = $this->mime->get();
8 +        $body = $this->mime->get(array(
9 +            'html_charset' => APP_CHARSET,
10 +            'text_charset' => APP_CHARSET,
11 +            'head_charset' => APP_CHARSET
12 +        ));
13          $headers = array(
14              'From'    => $from,
15              'To'      => Mail_API::fixAddressQuoting($to),
16 @@ -612,7 +616,11 @@
17          $to = MIME_Helper::encodeAddress($to);
18          $subject = MIME_Helper::encode($subject);
19  
20 -        $body = $this->mime->get();
21 +        $body = $this->mime->get(array(
22 +            'html_charset' => APP_CHARSET,
23 +            'text_charset' => APP_CHARSET,
24 +            'head_charset' => APP_CHARSET
25 +        ));
26          $this->setHeaders(array(
27              'From'    => $from,
28              'To'      => $to,
This page took 0.185799 seconds and 3 git commands to generate.