(2013-10-05, 02:51 AM)i-Discover Wrote: That works but it breaks the google seo url (http://mods.mybb.com/view/google-seo)
if i don't remove &action=lastpost
the url is shown like this
/Thread-Hi-there?pid=62#pid62
But if i remove &action=lastpost
the url becomes
showthread.php?tid=10&action=#.Uk9-mFBmh8E
Please let me know if you have an alternative solution
try something this... i don´t know if work... i don´t test here...
find
$posttime = my_date($mybb->settings['timeformat'], $threadRow['lastpost']);
Replace
$posttime = my_date($mybb->settings['timeformat'], $threadRow['lastpost']);
$threadlink = get_thread_link($threadRow['tid']);
find
<a href="showthread.php?tid=' . $threadRow['tid'] . '&action=lastpost">
replace
<a href="' . $threadlink . '">