When a plugin adds a buffer hook, a fatal error happens because it looks for the wrong file.
In obExit(), the offending code is
Code: [Select]
It should be
Code: [Select]
In obExit(), the offending code is
if (!empty($fun[2]) && $fun[2] === 'plugin')
require_once($fun[1] . '.php');It should be
if (!empty($fun[2]))
loadPluginSource($fun[2], $fun[1]);
This topic was marked solved by its starter, on June 1st, 2013, 06:24 AM



