diff options
author | alecpl <alec@alec.pl> | 2010-01-08 08:27:57 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-01-08 08:27:57 +0000 |
commit | 57837fd6892aed4ad03f250e120f2b2c79e8a5a5 (patch) | |
tree | 99c58cccbd6d042d283b5aa02968055c706e31db /program/steps/mail/spell_googie.inc | |
parent | 892af478694f19d292769a02fe2820736bd29508 (diff) |
- Bug in spellchecker suggestions when server charset != UTF8 (#1486406)
Diffstat (limited to 'program/steps/mail/spell_googie.inc')
-rw-r--r-- | program/steps/mail/spell_googie.inc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/program/steps/mail/spell_googie.inc b/program/steps/mail/spell_googie.inc index 06c050882..28d339d41 100644 --- a/program/steps/mail/spell_googie.inc +++ b/program/steps/mail/spell_googie.inc @@ -48,7 +48,7 @@ if ($fp = fsockopen($host, $port, $errno, $errstr, 30)) $out = "POST $path HTTP/1.0\r\n"; $out .= "Host: $host\r\n"; $out .= "Content-Length: " . strlen($data) . "\r\n"; - $out .= "Content-type: application/x-www-form-urlencoded\r\n"; + $out .= "Content-Type: application/x-www-form-urlencoded\r\n"; $out .= "Connection: Close\r\n\r\n"; $out .= $data; fwrite($fp, $out); @@ -58,6 +58,8 @@ if ($fp = fsockopen($host, $port, $errno, $errstr, 30)) fclose($fp); } +// Don't use server's default Content-Type charset (#1486406) +header("Content-Type: text/xml; charset=".RCMAIL_CHARSET); print $store; exit; |