2010-02-27, 12:00 AM
Okay, I took a look. This is a bug in the Merge System / MyTracker plugin. It seems that this error comes about at PHP shutdown. Both these should have this code defined somewhere:
A workaround from this plugin's side, which I _may_ stick in is to find:
Thanks for reporting.
define('NO_PLUGINS', 1);
as neither utilise and should be loading plugins at all.A workaround from this plugin's side, which I _may_ stick in is to find:
if(!defined('IN_ADMINCP'))
and replace with:if(!defined('IN_ADMINCP') && is_object($GLOBAL['templates']))
But again, this really isn't an issue with this plugin.Thanks for reporting.