This commit is contained in:
Thomas Tanghus 2012-08-09 17:22:56 +02:00 committed by Jörn Friedrich Dreyer
parent 0ac8434670
commit cb736b42e3
1 changed files with 3 additions and 0 deletions

View File

@ -153,6 +153,9 @@ class Sabre_CardDAV_Plugin extends Sabre_DAV_ServerPlugin {
// Taking out \r to not screw up the xml output
$returnedProperties[200][$addressDataProp] = str_replace("\r","", $val);
// The stripping of \r breaks the Mail App in OSX Mountain Lion
// this is fixed in master, but not backported. /Tanghus
$returnedProperties[200][$addressDataProp] = $val;
}
}