Changeset 6213


Ignore:
Timestamp:
05/16/12 14:20:49 (12 years ago)
Author:
thiago
Message:

Ticket #2749 - problemas de interpretação de caracteres especiais.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/expressoMail1_2/js/draw_api.js

    r6211 r6213  
    14111411 
    14121412function html_entities(string) { 
    1413                 return String(string).replace(/&/g, '&amp;').replace(/</g, '&lt;').replace(/>/g, '&gt;').replace(/"/g, '&quot;'); 
     1413                return String(string).replace(/</g, '&lt;').replace(/>/g, '&gt;').replace(/"/g, '&quot;'); 
    14141414} 
    14151415 
  • trunk/prototype/modules/filters/interceptors/FilterMapping.php

    r6193 r6213  
    235235                                                $require_vacation = true; 
    236236                                                $action[$k]['parameter'] = "\"" . $action[$k]['parameter'] . "\""; 
    237                                                 $vacation_action = ' :subject "Fora do Escritorio" ' . $action[$k]['parameter'] . ";"; 
     237                                                $vacation_action = ' :subject "Fora do Escrit&oacuterio" ' . $action[$k]['parameter'] . ";"; 
    238238                                                $vacation = true; 
    239239                                                continue; 
Note: See TracChangeset for help on using the changeset viewer.