diff options
author | Sarven Capadisli <csarven@status.net> | 2009-10-30 21:31:11 +0000 |
---|---|---|
committer | Sarven Capadisli <csarven@status.net> | 2009-10-30 21:31:11 +0000 |
commit | db9aef9f67a9448e73f6ee3463329045e41084f3 (patch) | |
tree | 1798517e69f16a82acca022a3b0ae76d34123f28 /actions/newnotice.php | |
parent | 900a0e2838e0c84649c3e09e683d0ad37dab9552 (diff) |
IE has some issue with notices that are sent with file attachments. It
doesn't like the XHR response with XHTML DTD. New notices without the
file attachment work fine.
The rendered content (the anchor for the file attachment link) doesn't
appear to be the issue.
To fix this problem, I removed the XHTML DTD line from newnotice's XHR
response. This is unnecessary for text/xml outputs that's intended
for XHR responses any way. It just happens to fix an IE issue.
Still a mystery to me as to why it is particular to notices with file
attachments.
Diffstat (limited to 'actions/newnotice.php')
-rw-r--r-- | actions/newnotice.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/actions/newnotice.php b/actions/newnotice.php index f677c49a9..fbd7ab6bc 100644 --- a/actions/newnotice.php +++ b/actions/newnotice.php @@ -192,7 +192,9 @@ class NewnoticeAction extends Action common_broadcast_notice($notice); if ($this->boolean('ajax')) { - $this->startHTML('text/xml;charset=utf-8'); + header('Content-Type: text/xml;charset=utf-8'); + $this->xw->startDocument('1.0', 'UTF-8'); + $this->elementStart('html'); $this->elementStart('head'); $this->element('title', null, _('Notice posted')); $this->elementEnd('head'); |