Note the missing qw in file https://api.metacpan.org/source/SMITHFARM/App-MFILE-WWW-0.137/lib/App/MFILE/WWW.pm for @EXPORT_OK
our $VERSION = '0.137';
our @EXPORT_OK = ( $VERSION );
should be
our $VERSION = '0.137';
our @EXPORT_OK = qw( $VERSION );
Anonymous
View and moderate all "tickets Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Tickets"
Thanks for the bug report, Anonymous!
That said, I'm not sure it's a bug - at least in Perl 5.12 and above, which is what I'm using. Play with the following code snippet: