diff options
author | Phil Sturgeon <email@philsturgeon.co.uk> | 2012-01-08 23:24:32 +0100 |
---|---|---|
committer | Phil Sturgeon <email@philsturgeon.co.uk> | 2012-01-08 23:24:32 +0100 |
commit | 2425f2f90331a014d3b276629089135fbd849a42 (patch) | |
tree | 12b8c710384aaed67dfb048c5dc1d5e74d1e2fec /system/core/Output.php | |
parent | 352d60e9f3a65def29e02a4507ef742eac255333 (diff) | |
parent | 0609d588a4340fc9a9cfbc0ff76c39bba9ab09fb (diff) |
Merge pull request #897 from IT-Can/develop-fixes-896
Fixes for issue #896
Diffstat (limited to 'system/core/Output.php')
-rwxr-xr-x | system/core/Output.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/system/core/Output.php b/system/core/Output.php index 1beee734f..da5c29044 100755 --- a/system/core/Output.php +++ b/system/core/Output.php @@ -129,7 +129,6 @@ class CI_Output { * * Sets the output string * - * @access public * @param string * @return void */ @@ -282,7 +281,7 @@ class CI_Output { * @param integer * @return void */ - publi function cache($time) + public function cache($time) { $this->cache_expiration = ( ! is_numeric($time)) ? 0 : $time; return $this; |