The problem may be that you are using the PHP functionheader("Content-Type: application/rss+xml")
to set your content type.
As CodeIgniter does not know you are doing this it too will try and set the Content-Type
headder.
Try using the build in $this->output->set_content_type();
method (docs) instead
$this->output->set_content_type('application/rss+xml');