diff options
author | Robin Millette <millette@controlyourself.ca> | 2009-02-02 20:47:57 +0000 |
---|---|---|
committer | Robin Millette <millette@plantard.controlezvous.ca> | 2009-02-02 20:47:57 +0000 |
commit | 3f0eb901283e266384f78e8cf1dbd7912bd2f254 (patch) | |
tree | 7a0071af0a7d73a8efb0c4ac643c12622fc0c403 /actions/newnotice.php | |
parent | f9edd1101b95ea41051fee2e8e983bebd890cc50 (diff) |
removed extraneous argument in startHTML calls
Diffstat (limited to 'actions/newnotice.php')
-rw-r--r-- | actions/newnotice.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/newnotice.php b/actions/newnotice.php index 572adbb23..5142cb5ff 100644 --- a/actions/newnotice.php +++ b/actions/newnotice.php @@ -161,7 +161,7 @@ class NewnoticeAction extends Action common_broadcast_notice($notice); if ($this->boolean('ajax')) { - $this->startHTML('text/xml;charset=utf-8', true); + $this->startHTML('text/xml;charset=utf-8'); $this->elementStart('head'); $this->element('title', null, _('Notice posted')); $this->elementEnd('head'); |