mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 07:53:39 +01:00
Try to take only quoted_printable to decode and avoid decoding url params as quoted
This commit is contained in:
parent
b6fc08c010
commit
83e782330d
@ -6608,7 +6608,7 @@ class Mail
|
||||
|
||||
static function detect_qp($string)
|
||||
{
|
||||
return preg_match('/(=[0-9][A-F])|(=[A-F][0-9])|(=[A-F][A-F])|(=[0-9][0-9])/', $string);
|
||||
return preg_match('/(=[0-9][A-F])|(=[A-F][0-9])|(=[A-F][A-F])|(=[0-9][0-9])[\s|=]/', $string);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user