[Dashboard] If environment is set to development then show the debug toolbar

这个提交包含在:
Peter Goodhall 2022-02-16 16:14:38 +00:00
父节点 6d87c1bb8d
当前提交 f717d8820c

查看文件

@ -4,7 +4,10 @@ class Dashboard extends CI_Controller {
public function index()
{
// If environment is set to development then show the debug toolbar
if(ENVIRONMENT == 'development') {
$this->output->enable_profiler(TRUE);
}
// Check our version and run any migrations
$this->load->library('Migration');