Changeset 5c7e54b in github


Ignore:
Timestamp:
May 22, 2012 3:06:02 AM (12 months ago)
Author:
Aleksander Machniak <alec@…>
Branches:
master, HEAD, dev-browser-capabilities, pdo
Children:
38a08c0
Parents:
5fed074
Message:
  • Fix HTML entities handling in HTML editor (#1488483)
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • CHANGELOG

    r9a2de84 r5c7e54b  
    22=========================== 
    33 
     4- Fix HTML entities handling in HTML editor (#1488483) 
    45- Fix listing shared folders on Courier IMAP (#1488466) 
    56- Fix issue where draft auto-save wasn't executed after some inactivity time 
  • program/steps/mail/compose.inc

    r0c25968 r5c7e54b  
    771771  // If desired, set this textarea to be editable by TinyMCE 
    772772  if ($isHtml) { 
     773    $MESSAGE_BODY = htmlentities($MESSAGE_BODY, ENT_NOQUOTES, RCMAIL_CHARSET); 
    773774    $attrib['class'] = 'mce_editor'; 
    774775    $textarea = new html_textarea($attrib); 
  • program/steps/settings/edit_identity.inc

    r7fe3811 r5c7e54b  
    9292  } 
    9393 
     94  $IDENTITY_RECORD['signature'] = htmlentities($IDENTITY_RECORD['signature'], ENT_NOQUOTES, RCMAIL_CHARSET); 
     95 
    9496  // disable some field according to access level 
    9597  if (IDENTITIES_LEVEL == 1 || IDENTITIES_LEVEL == 3) { 
Note: See TracChangeset for help on using the changeset viewer.