2011-05-18, 02:01 AM
(2011-05-17, 07:59 PM)envira Wrote: I get this error...
Fatal error: Call to undefined function cache_themes() in /home/envira/public_html/inc/plugins/cfi.php on line 57
That file is one of mine, and the error is caused by a renamed admin directory, which I forgot to upload the fix for.
In inc/plugins/cfi.php find:
require_once './admin/inc/functions_themes.php';
And replace with:
require_once "./{$mybb->config['admin_dir']}/inc/functions_themes.php";
I'll upload the fixed file soon, thanks for reminding me about that.