PDA

View Full Version : $vbulletin->options[bburl] - Alter


ManagerJosh
02-17-2008, 10:54 PM
Is there a way to customize $vbulletin->options[bburl] directly by getting the $_SERVER[HTTP_HOST] ?

Brian
02-18-2008, 12:59 PM
You could add a plugin with code that looks something like this:

$vbulletin->options['bburl'] = $_SERVER['HTTP_HOST'];

Our Sponsors
 

ManagerJosh
02-18-2008, 01:40 PM
I've been trying that but I haven't been able to find the right plugin place.

Brian
02-18-2008, 05:19 PM
The 'parse_templates' hook location would probably be the best. If that doesn't work, can you elaborate a little on what you're trying to do and why you're trying to change it?