diff --git a/application/core/MY_Output.php b/application/core/MY_Output.php index 10ef413..75f5db6 100644 --- a/application/core/MY_Output.php +++ b/application/core/MY_Output.php @@ -148,6 +148,10 @@ function _display($output=''){ function set_output_data($varname, $value){ $this->_output_data[$varname] = $value; } + + function set_output_data_arr($arr){ + $this->_output_data = $arr; + } private function get_template_output($output){ @@ -235,4 +239,4 @@ public function set_canonical($url) { $this->_canonical = $url; } -} \ No newline at end of file +}