I wanted to confirm some things before I posted more, so from marco and alan-cit from irc.
You should really refrence varibles instead of copying them.
$myvarible =& $vbulletin->options['foo'];
Since we just want to reassign it an easier to remember name, and since this I assume would be used just for an easier to read option, it will save on memory. If we needed to change $myvarible for some reason, like +1 we would change the original as well, in which case we would want to copy it
|