diff options
author | Greg Aker <greg@gregaker.net> | 2011-08-22 01:01:45 +0200 |
---|---|---|
committer | Greg Aker <greg@gregaker.net> | 2011-08-22 01:01:45 +0200 |
commit | ff390b9c43f33ee734b5e8abc754539799a19357 (patch) | |
tree | c796b56210bd9e606845d510466606f4f7881f40 /system/libraries | |
parent | d66affd7e518ac4dd21c77e5344680c5217ff5e5 (diff) | |
parent | 8310c9a33647804be22a92f1a0458d30d5cacd8a (diff) |
Merge pull request #258 from yterajima/issue56
Fixed #56:_compile_session_data() should be 'protected'
Diffstat (limited to 'system/libraries')
-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 */ |