Ejemplo n.º 1
0
	public function show($once = false)
	{
		ob_start();
		parent::show($once);
		$output = ob_get_clean();

		if ($this->gz_enable && strlen($output) > $this->gz_thresh)
			ob_start("ob_gzhandler");

		echo $output;
	}