summaryrefslogtreecommitdiffstats
path: root/application/core/MY_Output.php
blob: 402e46c809ed6be767eb30bddb431f16d79a82b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php
/*
 * Copyright 2016 Florian "Bluewind" Pritz <bluewind@server-speed.net>
 *
 * Licensed under AGPLv3
 * (see COPYING for full license text)
 *
 */

class MY_Output extends CI_Output {
	public function __construct()
	{
		parent::__construct();
		$this->parse_exec_vars = false;
	}
}