Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorThomas Tanghus <thomas@tanghus.net>2012-01-25 02:02:02 +0400
committerThomas Tanghus <thomas@tanghus.net>2012-01-25 02:08:40 +0400
commit5458e5293564f432ad2eed0457cbe94321ee7114 (patch)
tree1f84f77880fc59d169fb0ed53ebbfa5451c61603 /apps
parenta77f3a07a10b074486a0c3a21ae27c5c067ba8b2 (diff)
Fixed http://bugs.owncloud.org/thebuggenie/owncloud/issues/oc-92
"Character '&' in address data causes wrong data". This was also the case for the 'N' property.
Diffstat (limited to 'apps')
-rw-r--r--apps/contacts/lib/vcard.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/contacts/lib/vcard.php b/apps/contacts/lib/vcard.php
index c99d53c9716..ceac2dcfad2 100644
--- a/apps/contacts/lib/vcard.php
+++ b/apps/contacts/lib/vcard.php
@@ -323,7 +323,7 @@ class OC_Contacts_VCard{
*/
public static function structureProperty($property){
$value = $property->value;
- $value = htmlspecialchars($value);
+ //$value = htmlspecialchars($value);
if($property->name == 'ADR' || $property->name == 'N'){
$value = OC_VObject::unescapeSemicolons($value);
}