Detect URLs in popup of events

pull/17/head
Francis Lachapelle 2014-02-10 13:45:51 -05:00
parent b5f1d3a19a
commit 0307b8339a
2 changed files with 2 additions and 1 deletions

1
NEWS
View File

@ -29,6 +29,7 @@ Enhancements
- moved the DN cache to SOGoCache - avoiding sogod restarts after RDN operations
- don't use the HTML editor with Internet Explorer 7
- add message-id header to appointment notifications (#2535)
- detect URLs in popup of events
Bug fixes
- don't load 'background' attribute (#2437)

View File

@ -530,7 +530,7 @@
[[event summary] stringByEscapingHTMLString], @"summary",
[[event location] stringByEscapingHTMLString], @"location",
[created_by stringByEscapingHTMLString], @"created_by",
[[event comment] stringByEscapingHTMLString], @"description",
[[[event comment] stringByEscapingHTMLString] stringByDetectingURLs], @"description",
nil];
[result appendContentString: [data jsonRepresentation]];