Skip to content

Instantly share code, notes, and snippets.

@davist11
Last active December 13, 2015 18:18
Show Gist options
  • Save davist11/4954205 to your computer and use it in GitHub Desktop.
Save davist11/4954205 to your computer and use it in GitHub Desktop.
ExpressionEngine: Don't show template debugging in AJAX requests
<?php
if(empty($_SERVER['HTTP_X_REQUESTED_WITH'])) {
$config['show_profiler'] = (ENV === 'local') ? 'y' : 'n';
$config['template_debugging'] = (ENV === 'local') ? 'y' : 'n';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment