Quote:
Originally Posted by Olli460
Im trying to edit the usertool.php to enable some options but I dunno how to remove the global to enable it. If I dont edit it at all I get this:Fatal error: Call to undefined function: globalize() How do I get rid of global with the operation still working? Ive tried deleting the whole line with global but only to make the page show up but not function properly. I dont know what I should be doing in order to fix this so any help would be appreciated, thanks.
|
globalize() doesn't exist in 3.5.x it's been replaced by the Vb_Input_CLeaner class
PHP Code:
$vbulletin->input->clean_array_gpc();
$vbulletin->input_clean_gpc();
are used in 3.5.x instead of globalize()