diff options
author | Rick Ellis <rick.ellis@ellislab.com> | 2008-10-17 10:02:02 +0200 |
---|---|---|
committer | Rick Ellis <rick.ellis@ellislab.com> | 2008-10-17 10:02:02 +0200 |
commit | 4d0ecc5acc67a9377c2e7f5f6c1fd69287b02540 (patch) | |
tree | 20fd8302a51fbabaf089ac641f44d93d772a9e64 /system | |
parent | e910430b131fa2589e34262c650444a87d1c03de (diff) |
Added router to the super object so that the profiler class can access it
Diffstat (limited to 'system')
-rw-r--r-- | system/libraries/Controller.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/system/libraries/Controller.php b/system/libraries/Controller.php index 685f58cfd..95c020857 100644 --- a/system/libraries/Controller.php +++ b/system/libraries/Controller.php @@ -66,7 +66,8 @@ class Controller extends CI_Base { 'benchmark' => 'Benchmark',
'uri' => 'URI',
'output' => 'Output',
- 'lang' => 'Language'
+ 'lang' => 'Language',
+ 'router' => 'Router'
);
foreach ($classes as $var => $class)
|