4.7.16 release notes - result of initial automated run
[civicrm-core.git] / ang / crmUtil.js
index d480279068239cb384be3ad958fa48a798d7af24..8cb6242689a559b5027862bffdcd8c816e7147ec 100644 (file)
       var deferred = $q.defer();
       var p;
       var backend = crmApi.backend || CRM.api3;
+      if (params && params.body_html) {
+        // CRM-18474 - remove Unicode Character 'LINE SEPARATOR' (U+2028)
+        // and 'PARAGRAPH SEPARATOR' (U+2029) from the html if present.
+        params.body_html = params.body_html.replace(/([\u2028]|[\u2029])/g, '\n');
+      }
       if (_.isObject(entity)) {
         // eval content is locally generated.
         /*jshint -W061 */