Quote:
Originally Posted by Oblivion Knight
No, I have no problem with the way that the plugin functions..
However, if the option is set to "No" - it should be grabbing the thread's title and inserting that instead of having nothing. Otherwise you could end up with several threads with "Forked Thread: " as the title - which makes no sense really.
|
I was misunderstanding you. Now I think I see what you mean. You're saying that the "No" setting should not apply here since it is a forked thread, rather than a quoted post. Correct?
To fix it change
PHP Code:
if ($vbulletin->options['quotetitle'])
{
if ($parentposttitle != '')
{
$posttitle = $parentposttitle;
}
else
{
$posttitle = $threadinfo['title'];
}
$posttitle = unhtmlspecialchars($posttitle);
$posttitle = preg_replace('#^(' . preg_quote($vbphrase['reply_prefix'], '#') . '\s*)+#i', '', $posttitle);
$newpost['title']="Fork of: $postinfo[title]";
}
else
{
$newpost['title']="Forked Thread: ";
}
to
PHP Code:
if ($parentposttitle != '')
{
$posttitle = $parentposttitle;
}
else
{
$posttitle = $threadinfo['title'];
}
$posttitle = unhtmlspecialchars($posttitle);
$posttitle = preg_replace('#^(' . preg_quote($vbphrase['reply_prefix'], '#') . '\s*)+#i', '', $posttitle);
$newpost['title']="Fork of: $postinfo[title]";
If that's what you meant I'll fix the original file.
Thanks for the feedback.