diff options
author | Andrey Andreev <narf@bofh.bg> | 2013-04-04 15:53:21 +0200 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2013-04-04 15:53:21 +0200 |
commit | 0e4237f8fb01320fb7cc87b1fb93a552630505d6 (patch) | |
tree | e3e460b3ba37bc73a52cb49ee0a7ed88fb6ef350 /system/libraries | |
parent | 1ccaaaeb27d368e6bef5112aa00059eef1635c09 (diff) |
Fix #2380 and deprecate CI_Router::fetch_*() methods
Diffstat (limited to 'system/libraries')
-rw-r--r-- | system/libraries/Profiler.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Profiler.php b/system/libraries/Profiler.php index 470688fdc..3c7ce5406 100644 --- a/system/libraries/Profiler.php +++ b/system/libraries/Profiler.php @@ -405,7 +405,7 @@ class CI_Profiler { .'<fieldset id="ci_profiler_controller_info" style="border:1px solid #995300;padding:6px 10px 10px 10px;margin:20px 0 20px 0;background-color:#eee;">' ."\n" .'<legend style="color:#995300;"> '.$this->CI->lang->line('profiler_controller_info')." </legend>\n" - .'<div style="color:#995300;font-weight:normal;padding:4px 0 4px 0;">'.$this->CI->router->fetch_class().'/'.$this->CI->router->fetch_method() + .'<div style="color:#995300;font-weight:normal;padding:4px 0 4px 0;">'.$this->CI->router->class.'/'.$this->CI->router->method .'</div></fieldset>'; } |