Couldn't live without this hack ... Just now I can update my forum vB 3.07 to 3.5.3
All installed and works linke a charm!
2 minor questions:
The title in threadview is now:
Prefix - NameOfTheTitle
I want to change that into:
(Prefix) NameOfTheTitle
I changed in class_dm_threadpost.php:
PHP Code:
$threadinfo['title'] = $threadinfo['threadprefix'] . ' - ' . $threadinfo['title'];
into
PHP Code:
$threadinfo['title'] = ($threadinfo['threadprefix']) . $threadinfo['title'];
or
PHP Code:
$threadinfo['title'] = '(' . $threadinfo['threadprefix'] . ')' . $threadinfo['title'];
but both ways didn't work :disappointed: Do you know a (other) way?
2nd) On the forumindex (home) the latest post is shown as an URL with the Prefix in it:
Like:
Prefix - This Is The Latest Post
I would like to show there the Prefix with the link next to it:
Like: (Prefix)
This Is The Latest Post
Hopefully you can give two nice answers
XXX
PnP