summaryrefslogtreecommitdiffstats
path: root/system/libraries/Parser.php
diff options
context:
space:
mode:
authoradmin <devnull@localhost>2006-10-07 05:16:32 +0200
committeradmin <devnull@localhost>2006-10-07 05:16:32 +0200
commit88a8ad187b13b36d6120eae2344fe16c3a76219d (patch)
tree9707b986ae9fe37f226abd5fec76b58d15903858 /system/libraries/Parser.php
parent81ccb439c2743776728b798bdc7e31db3d826233 (diff)
Diffstat (limited to 'system/libraries/Parser.php')
-rw-r--r--system/libraries/Parser.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/system/libraries/Parser.php b/system/libraries/Parser.php
index 42e78b0ee..a0c9dab9e 100644
--- a/system/libraries/Parser.php
+++ b/system/libraries/Parser.php
@@ -44,8 +44,8 @@ class CI_Parser {
*/
function parse($template, $data, $return = FALSE)
{
- $obj =& get_instance();
- $template = $obj->load->view($template, $data, TRUE);
+ $CI =& get_instance();
+ $template = $CI->load->view($template, $data, TRUE);
if ($template == '')
{
@@ -66,7 +66,7 @@ class CI_Parser {
if ($return == FALSE)
{
- $obj->output->final_output = $template;
+ $CI->output->final_output = $template;
}
return $template;