I've tried a number of things just to see if the variable is being changed but even something simple like
Code:
$vboptions[copyrighttext]="test";
Does nothing in all the hook locations I've tried.
--------------- Added [DATE]1225126687[/DATE] at [TIME]1225126687[/TIME] ---------------
Ok I have it working now.
Code:
$vboptions['copyrighttext'] = "test";
Does nothing.
Code:
$vbulletin->options['copyrighttext'] = "test";
Correctly changes it when placed in global_start. Annoying since the 2 are supposed to be equivalent and $vboptions['copyrighttext'] is what is called in the footer template.