PDA

View Full Version : By means of that vbulletin variable I can obtain the complete path of a post


MarioN70
08-28-2009, 09:31 PM
Hello to all, I have one questioning and it is with regard to variables of vbulletin.

For example the variable: $vboptions [bburl], it offers to me the path of the forum for example: https://vborg.vbsupport.ru/, but what I wish is to obtain the complete path of the post, for example: https://vborg.vbsupport.ru/showthread.php?t=221765.

I have been looking for the whole network(net) for the response but without major success.

If they could help me with this topic he would be grateful for them.

Regards,

--------------- Added 1251500566 at 1251500566 ---------------

Already well I solved it and it is of the following way:

<if condition="$threadinfo[threadid]">
$vboptions[bburl]/showthread.php?t=$threadinfo[threadid]&goto=newpost
<else />
$vboptions[bburl]
</if>

Thanks.

Lynne
08-28-2009, 10:15 PM
There is no variable to use that is nice and simple like $vboptions[bburl]. You can use $vboptions[bburl]showthread.php?t=$threadid (That may not be exact, but you get the idea).

MarioN70
08-29-2009, 01:58 PM
Thanks Lynne.