Decode header value in rcube_mime::get() by default (#1488511)

Conflicts:

	program/include/rcube_message_header.php
	program/include/rcube_mime.php
pull/17/head
Aleksander Machniak 12 years ago
parent 7a259c601b
commit 0e5821166b

@ -1,6 +1,7 @@
CHANGELOG Roundcube Webmail
===========================
- Decode header value in rcube_mime::get() by default (#1488511)
- Fix errors with enabled PHP magic_quotes_sybase option (#1488506)
- Fix SQL query for contacts listing on MS SQL Server (#1488505)
- Update to TinyMCE 3.5.2

@ -83,15 +83,18 @@ class rcube_mail_header
/**
* Returns header value
*/
public function get($name)
public function get($name, $decode = true)
{
$name = strtolower($name);
if (isset($this->obj_headers[$name])) {
return $this->{$this->obj_headers[$name]};
$value = $this->{$this->obj_headers[$name]};
}
else {
$value = $this->others[$name];
}
return $this->others[$name];
return $decode ? rcube_mime::decode_header($value, $this->charset) : $value;
}
/**

@ -34,7 +34,7 @@
*/
class rcube_mime
{
private static $default_charset = RCMAIL_CHARSET;
private static $default_charset;
/**
@ -42,12 +42,26 @@ class rcube_mime
*/
function __construct($default_charset = null)
{
if ($default_charset) {
self::$default_charset = $default_charset;
self::$default_charset = $default_charset;
}
/**
* Returns message/object character set name
*
* @return string Characted set name
*/
public static function get_charset()
{
if (self::$default_charset) {
return self::$default_charset;
}
else {
self::$default_charset = rcmail::get_instance()->config->get('default_charset', RCMAIL_CHARSET);
if ($charset = rcmail::get_instance()->config->get('default_charset')) {
return $charset;
}
return RCMAIL_CHARSET;
}
@ -92,7 +106,7 @@ class rcube_mime
if ($part->ctype_parameters['charset'])
$struct->charset = $part->ctype_parameters['charset'];
$part_charset = $struct->charset ? $struct->charset : self::$default_charset;
$part_charset = $struct->charset ? $struct->charset : self::get_charset();
// determine filename
if (($filename = $part->d_parameters['filename']) || ($filename = $part->ctype_parameters['name'])) {
@ -186,7 +200,7 @@ class rcube_mime
*/
public static function decode_mime_string($input, $fallback = null)
{
$default_charset = !empty($fallback) ? $fallback : self::$default_charset;
$default_charset = !empty($fallback) ? $fallback : self::get_charset();
// rfc: all line breaks or other characters not found
// in the Base64 Alphabet must be ignored by decoding software

Loading…
Cancel
Save