diff options
author | judge <mjnaderi@gmail.com> | 2013-09-10 14:54:47 +0200 |
---|---|---|
committer | judge <mjnaderi@gmail.com> | 2013-09-10 14:54:47 +0200 |
commit | c65a12e3b0c3f28369ecdef3dc7529f159dfe845 (patch) | |
tree | 5e95f62955ab2887b03a4469d053b432afe70383 | |
parent | 67e643a475a37c53267d0f43b2c2d67efd907014 (diff) |
Removed unnecessary parameter
-rw-r--r-- | system/core/Output.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/core/Output.php b/system/core/Output.php index 7bfb8cebe..e323385ba 100644 --- a/system/core/Output.php +++ b/system/core/Output.php @@ -842,7 +842,7 @@ class CI_Output { // Remove closing tag and save it for later $pos = strrpos($output, '</'); - $closing_tag = substr($output, $pos, strlen($output)); + $closing_tag = substr($output, $pos); $output = substr_replace($output, '', $pos); } |