Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion config/config.master.php
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@
$env_config['allow_extensions'] = 'y';
$env_config['email_debug'] = (ENV_DEBUG) ? 'y' : 'n' ;
// If we're not in production show the profile on the front-end but not in the CP
$env_config['show_profiler'] = ( ! ENV_DEBUG OR (isset($_GET['D']) && $_GET['D'] == 'cp')) ? 'n' : 'y' ;
$env_config['show_profiler'] = ( ! ENV_DEBUG OR $_SERVER['SCRIPT_NAME'] == 'admin.php') ? 'n' : 'y' ;
// Show template debugging if we're not in production
$env_config['template_debugging'] = (ENV_DEBUG) ? 'y' : 'n' ;
/**
Expand Down