In the AdminCP, go to the Plugin Manager and look for a VaultWiki-related plugin at hook location "global_setup_complete". Edit the plugin and remove the following code:
Code:
switch (THIS_SCRIPT)
{
case 'showpost':
{
vw_Hard_Core::model('Plugins/Forum')->showpost_start();
break;
}
case 'showthread':
{
vw_Hard_Core::model('Plugins/Forum')->showthread_start();
break;
}
case 'forumdisplay':
case 'index':
{
vw_Hard_Core::model('Plugins/Forum')->forumdisplay_start();
break;
}
}