"No quoted printables for GroupDAV"

This commit is contained in:
Ralf Becker 2009-08-07 07:03:45 +00:00
parent 91512da5c2
commit 195e55bee8

View File

@ -70,7 +70,7 @@ class infolog_ical extends infolog_bo
{ {
$vevent->setAttribute($field,$value); $vevent->setAttribute($field,$value);
$options = array(); $options = array();
if(preg_match('/([\000-\012\015\016\020-\037\075])/',$value)) if($this->productManufacturer != 'GroupDAV' && preg_match('/([\000-\012\015\016\020-\037\075])/',$value))
{ {
$options['ENCODING'] = 'QUOTED-PRINTABLE'; $options['ENCODING'] = 'QUOTED-PRINTABLE';
} }