I know how to use the function. I have references to the old function name in my scripts. I want to change the pointers to use the new function without modifying the references in the code. See my post.
For example, I added this to a plugin in the global scope:
$DB_site =& $vbulletin->db;
This makes it so the references to the old $DB_site variable now refer to the new $vbulletin class so I don't have to change every instance of $DB_site within my code.
I want to do a similar thing for the references to the old print_standard_error() function.
|