diff options
-rw-r--r-- | system/core/Output.php | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/system/core/Output.php b/system/core/Output.php index 2811a73bc..d494d0080 100644 --- a/system/core/Output.php +++ b/system/core/Output.php @@ -175,15 +175,7 @@ class CI_Output { */ public function append_output($output) { - if (empty($this->final_output)) - { - $this->final_output = $output; - } - else - { - $this->final_output .= $output; - } - + $this->final_output .= $output; return $this; } |