Hello.
I need to include a styleheet like this. But is this safe, can the style.css file in anyway do something i shouldent do? Like if someone types in some "not css" code, and make my website Vulnerable for any types of atacks?
public function stylesheetsAction($style){
$this->response->setHeader("Content-Type", "text/css");
$this->view->disable();
include __DIR__.'/../../../themes/'.$this->folder.'/assets/css/'.$style.'.css';
}