diff options
author | yterajima <terra@e2esound.com> | 2011-08-22 00:26:54 +0200 |
---|---|---|
committer | yterajima <terra@e2esound.com> | 2011-08-22 00:29:08 +0200 |
commit | 8310c9a33647804be22a92f1a0458d30d5cacd8a (patch) | |
tree | c796b56210bd9e606845d510466606f4f7881f40 | |
parent | d66affd7e518ac4dd21c77e5344680c5217ff5e5 (diff) |
Fixed #56
_compile_session_data() is 'protected' to be able to extend
MY_Profiler.
-rw-r--r-- | system/libraries/Profiler.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/libraries/Profiler.php b/system/libraries/Profiler.php index 082a5ee1d..330acce73 100644 --- a/system/libraries/Profiler.php +++ b/system/libraries/Profiler.php @@ -493,7 +493,7 @@ class CI_Profiler { * * @return string */ - private function _compile_session_data() + protected function _compile_session_data() { if ( ! isset($this->CI->session)) { @@ -555,4 +555,4 @@ class CI_Profiler { // END CI_Profiler class /* End of file Profiler.php */ -/* Location: ./system/libraries/Profiler.php */
\ No newline at end of file +/* Location: ./system/libraries/Profiler.php */ |