Seditio Source
Root |
./othercms/xenForo 2.2.8/src/XF/Mvc/Renderer/Rss.php
<?php

namespace XF\Mvc\Renderer;

class
Rss extends Xml
{
    protected function
initialize()
    {
       
parent::initialize();
       
$this->response->contentType('application/rss+xml');
    }

    public function
getResponseType()
    {
        return
'rss';
    }
}