Quote:
Originally Posted by Opserty
Create a Plugin with a Hook location as stated in Dismounted's post.
|
Ah, ok. Closer. Much Closer. Please get me over the last challenges...
Just completed the following:
1. Plug-in's are enabled.
2. Created a new plugin called navTransport
3. Hook Location is 'forumdisplay_start'
4. Inserted this code:
PHP Code:
# Sanitize the variables, all of them are unsigned integers
$vbulletin->input->clean_array_gpc('r', array('b' => TYPE_UINT, 'e' => TYPE_UINT, 'g' => TYPE_UINT));
Last question, how do I call the variables b, e and g from within the 'header' template now after I've passed them via the query string like this:
http://www.mydomain.com/forums/forum...=9&e=2&b=2&g=4
Again, thank you for the help.