commit | c65a12e3b0c3f28369ecdef3dc7529f159dfe845 | [log] [tgz] |
---|---|---|
author | judge <mjnaderi@gmail.com> | Tue Sep 10 14:54:47 2013 +0200 |
committer | judge <mjnaderi@gmail.com> | Tue Sep 10 14:54:47 2013 +0200 |
tree | 5e95f62955ab2887b03a4469d053b432afe70383 | |
parent | 67e643a475a37c53267d0f43b2c2d67efd907014 [diff] |
Removed unnecessary parameter
diff --git a/system/core/Output.php b/system/core/Output.php index 7bfb8ce..e323385 100644 --- a/system/core/Output.php +++ b/system/core/Output.php
@@ -842,7 +842,7 @@ // 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); }