Hi,

I have my site available on multiple domains (.net, and also .nl etc). I noticed that the shoutbox was not working when it was not on my external URL. Digging into this, and while trying to setup the naked shoutbox, I noticed it came from this statement in the page:
Code
var script		= "http://URLFORSITE/ubbthreads.php";

This made it only work for my URL, but not for the others. Looking in the file header.tpl, I noticed this

Code
var script		= "{ubb url="" full="true"}";

I changed this to:
Code
var script		= "{ubb url="" full="false"}";
And voila, the shoutbox is working again!

This is because the script is now actually changed to:
Code
var script		= "/ubbthreads.php";
which makes it work again.

Now my question is, why is it like this and is it OK to just let the header.tpl reside on "false"? What are the side-effects, risks etc?

To me it seems that everything works as it should, but is that true?