Onimua pointed out something, as he runs both my Strike through threads plugin and this plugin
If you run both, edit the Subscribed Plugin:
Change the code to:
PHP Code:
if ($thread['issubscribed'])
{
if (!$thread['open'] && !$thread['sticky'])
{
$threadbit =& $threadbits_sticky;
$thread[threadtitle] = '<span style="font-weight: bold; color: #FF0000;">Tagged: </span><span style="text-decoration: line-through; color: #FF0000;">' . $thread[threadtitle] . '</span>';
}
else
{
$threadbit =& $threadbits_sticky;
$thread[threadtitle] = '<span style="color: #FF0000;"><span style="font-weight: bold;">Tagged: </span>' . $thread[threadtitle] . '</span>';
}
}
Then edit the strikethrough plugin, and change the code to:
PHP Code:
if (!$thread['open'] && !$thread['sticky'] && !$thread['issubscribed'])
{
$thread[threadtitle] = '<span style="text-decoration: line-through;">' . $thread[threadtitle] . '</span>';
}
This should solve the problem of them clashing
Chris