diff --git a/classes/Kohana/Debugtoolbar.php b/classes/Kohana/Debugtoolbar.php index ae400cf..ca4b365 100644 --- a/classes/Kohana/Debugtoolbar.php +++ b/classes/Kohana/Debugtoolbar.php @@ -115,14 +115,18 @@ abstract class Kohana_Debugtoolbar { { self::firephp(); } + + Profiler::stop($token); // Javascript for toolbar $template->set('scripts', file_get_contents(Kohana::find_file('views', 'toolbar', 'js'))); // CSS for toolbar - $styles = file_get_contents(Kohana::find_file('views', 'toolbar', 'css')); - - Profiler::stop($token); + if ($config->styles === TRUE) + { + $styles = file_get_contents(Kohana::find_file('views', 'toolbar', 'css')); + $template->set('styles', $styles); + } // Benchmarks panel if ($config->panels['benchmarks'] === TRUE) @@ -130,8 +134,6 @@ abstract class Kohana_Debugtoolbar { $template->set('benchmarks', self::get_benchmarks()); } - $template->set('styles', $styles); - $result = $template->render(); if ($print === TRUE) diff --git a/config/debug_toolbar.php b/config/debug_toolbar.php index 28f3946..42fbcc9 100644 --- a/config/debug_toolbar.php +++ b/config/debug_toolbar.php @@ -37,6 +37,11 @@ $config['panels'] = array( */ $config['secret_key'] = FALSE; +/** + * CSS style + **/ +$config['styles'] = TRUE; + /** * Exclude configs */