ultimatebb.cgi employs the obsolete "use vars" instead of "our", presumably for compatibility with older Perl versions.
I've used "our" in my scripts, but don't completely understand how it works (although I've mostly been able to get it to work by trial and error).
Is "our" equivalent to "use vars"?
For example, if, on a system running Perl 5.6+, the "use vars qw(%vars_poll ... $title_wording);" in ultimatebb.cgi were replaced with "our (%vars_poll ... $title_wording);", would the script function the same way?