MyBB Community Forums

Full Version: Forum path variable
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
What is the variable that stores the forum path?
What I am doing is that I added a few links to my templates. Now if I point them to "showthread.php?tid=2", it obviously works. But if I use "http://externalsite.com/arguments?{$mybb_path}showthread.php?tid=2", the variable is null and hence, the output is: http://externalsite.com/arguments?showthread.php?tid=2 instead of http://externalsite.com/arguments?http:/....php?tid=2

What should be the variable here that stores the forum path?
{$mybb->settings['bburl']} ??
Perfect!! Big Grin

Thanks, that's what I needed.

Cheers!