Changeset 3194 in subversion


Ignore:
Timestamp:
Jan 8, 2010 3:27:57 AM (3 years ago)
Author:
alec
Message:
  • Bug in spellchecker suggestions when server charset != UTF8 (#1486406)
Location:
trunk/roundcubemail
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/CHANGELOG

    r3189 r3194  
    22=========================== 
    33 
     4- Bug in spellchecker suggestions when server charset != UTF8 (#1486406) 
    45- Managesieve: Fix requires generation for multiple actions (#1486397) 
    56- Fix LDAP problem with special characters in RDN (#1486320) 
  • trunk/roundcubemail/program/steps/mail/spell_googie.inc

    r1649 r3194  
    4949  $out .= "Host: $host\r\n"; 
    5050  $out .= "Content-Length: " . strlen($data) . "\r\n"; 
    51   $out .= "Content-type: application/x-www-form-urlencoded\r\n"; 
     51  $out .= "Content-Type: application/x-www-form-urlencoded\r\n"; 
    5252  $out .= "Connection: Close\r\n\r\n"; 
    5353  $out .= $data; 
     
    5959  } 
    6060 
     61// Don't use server's default Content-Type charset (#1486406) 
     62header("Content-Type: text/xml; charset=".RCMAIL_CHARSET); 
    6163print $store;   
    6264exit; 
  • trunk/roundcubemail/program/steps/mail/spell_pspell.inc

    r3047 r3194  
    7272$out .= '</spellresult>'; 
    7373 
    74 header("Content-Type: text/xml"); 
     74header("Content-Type: text/xml; charset=".RCMAIL_CHARSET); 
    7575echo $out; 
    7676exit; 
Note: See TracChangeset for help on using the changeset viewer.