*Bumping* Ok.. in the last few years the code in packages>vbcms>content.php has changed to this:
(Line 1055)
Code:
$message = new vB_Phrase('vbcms', 'comment_thread_firstpost', $this->getPageURL(array(), true));
I'm trying to get this to work using the latest updated ver of vb.
I tried the following:
Quote:
$message = new vB_Phrase('vbcms', 'comment_thread_firstpost', $this->getPageURL(), $title, $message);
|
but it didn't work using
The url worked, but the description didn't.
Any Ideas on the correct syntax?? Thank you in advance!
--------------- Added [DATE]1424053817[/DATE] at [TIME]1424053817[/TIME] ---------------
Nevermind, got it.
Code:
$message = new vB_Phrase('vbcms', 'comment_thread_firstpost', $this->getPageURL(), $this->content->getDescription(), $title);