I am getting an error when the profiler is enabled ONLY when accessing the admin panel.
Other than turning it off, has a fix been made for this?
I can enable it and disable it by editing the code, but that's such a pain.
Thanks!
Edit - I did this edit in the inc/header.inc.php
if (!strstr($_SERVER["SCRIPT_NAME"],'administration'))
{
define ('BX_PROFILER', true);
if (BX_PROFILER && !isset($GLOBALS['bx_profiler_start']))
$GLOBALS['bx_profiler_start'] = microtime ();
}
Now profiler only runs when NOT in the admin panel. O_o best I could do at the moment.