diff options
author | Rick Ellis <rick.ellis@ellislab.com> | 2008-10-22 23:36:43 +0200 |
---|---|---|
committer | Rick Ellis <rick.ellis@ellislab.com> | 2008-10-22 23:36:43 +0200 |
commit | 0de51d86dbae3c640b961203afa588684ace421c (patch) | |
tree | 57cfefea5c7f31b4c72aba59b29fea582e30c9b3 | |
parent | e80b20f25521dc538bbdee3f35a31de2c6a931cb (diff) |
Made a change to allow multiple calls to the parser
-rw-r--r-- | system/libraries/Parser.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Parser.php b/system/libraries/Parser.php index 86e8e787e..011d9598a 100644 --- a/system/libraries/Parser.php +++ b/system/libraries/Parser.php @@ -66,7 +66,7 @@ class CI_Parser { if ($return == FALSE)
{
- $CI->output->final_output = $template;
+ $CI->output->append_output($template);
}
return $template;
|