Quote:
Originally Posted by superjeff
Little bug fixed: In the plugin "Add in showthread" do the edit marked in red:
Original: (don't work)if ($vbulletin->options['tfseo_attivo'] AND $vbulletin->options['tfseo_riscrivi'])
{
$tfseourl['thread'] = tfseo_url($thread[threadtitle]);
$tfseo_pagina = $vbulletin->options['tfseo_pagina'];
if ($thread[totalpages] != 1)
{
$lastpage = $tfseo_pagina . $thread[totalpages] . ".html";
}
}
New: (Work!) if ($vbulletin->options['tfseo_attivo'] AND $vbulletin->options['tfseo_riscrivi']) { $tfseourl['thread'] = tfseo_url($thread[threadtitle]); $tfseo_pagina = $vbulletin->options['tfseo_pagina']; if ($thread[totalpages] > 1) { $lastpage = $tfseo_pagina . $thread[totalpages] . ".html"; } }
|
Two questions:
Does this solve the last post problem?
Where is this code modification done?