Ok, after a day of using this I came across a major problem. Something in this mod conflicts with my Vaultwiki add-on.
First, it makes it so the "Last Post" link on the forum home leads to a search page instead of the real page.
Second, it makes it so I cannot create new wiki articles.
The author of VaultWiki said this was the problem:
Quote:
This is not a VaultWiki bug. The mod you are using "Merge Double Posts" was setting $post['postid'] to a NULL value at hook newpost_complete.
Please report this to the mod creator. The post ID is already set in the file above...
Code:
if ($type == 'thread')
{
$post['threadid'] = $id;
$threadinfo =& $dataman->thread;
$post['postid'] = $dataman->fetch_field('firstpostid');
}
else
{
$post['postid'] = $id;
}
|
If you could release a fix for this I would be very grateful. I really like your mod, but I paid to use VaultWiki and it's a bit more essential to my site.