V3 beta 4 ... Minor bug when on the user profile page, the links to posts don't have '
p=' for some reason.
We have basic friendly URLs in our vB4.2.0 options
Patched this as a hack... ./upload/dbtech/thanks/contenttypes/post/parse.php
Code:
//$row['url'] = (intval(self::$vbulletin->versionnumber) == 4 ? fetch_seo_url('post|bburl', $row) : self::$vbulletin->options['bburl'] . '/showpost.php?' . self::$vbulletin->session->vars['sessionurl'] . 'p=' . $row['postid']);
$row['url'] = self::$vbulletin->options['bburl'] . '/showpost.php?' . self::$vbulletin->session->vars['sessionurl'] . 'p=' . $row['postid'];
Kym