Seditio Source
Root |
./othercms/xenForo 2.2.8/src/XF/Install/View/Install/ConfigDownload.php
<?php

namespace XF\Install\View\Install;

class
ConfigDownload extends \XF\Mvc\View
{
    public function
renderRaw()
    {
       
$this->response->header('Content-type', 'application/octet-stream', true);
       
$this->response->setDownloadFileName('config.php');

        return
$this->params['generated'];
    }
}