I want new post notifications to contain the link to the actual post rather than to the first page of the thread. I tried replacing part of the original phrase:
Code:
Hello,
$bbuserinfo[username] has just posted in the $foruminfo[title] forum of $vboptions[bbtitle] under the title of $threadinfo[title].
This thread is located at $vboptions[bburl]/showthread.php?threadid=$threadinfo[threadid]
Here is the message that has just been posted:
***************
$post[message]
***************
with what should have included the title and link to the post:
Code:
Hello,
$bbuserinfo[username] has just posted in the $foruminfo[title] forum of $vboptions[bbtitle] under the title of $threadinfo[title].
$postinfo[title]
$vboptions[bburl]/showthread.php?postid=$postinfo[postid]#post$postinfo[postid]
Here is the message that has just been posted:
***************
$post[message]
***************
The result was weird. The post title didn't appear at all and the link was blank, i.e. didn't contain the ID of the post at all. Can anyone explain me what's wrong?