Quote:
Originally Posted by sorvani
You NEVER EVER EVER put the return items call inside ANY logic blocks.
It goes in a script once and once only at the end of sub EVENT_ITEM
Code:
sub EVENT_ITEM {
if blah blah blah {
lot of funky logic to do what you want. if/else/elsif/etc.
}
plugin::return_items(\%itemcount);
}
|
It has worked perfectly well in my other scripts.
This works just fine for me:
http://perl.pastebin.mozilla.org/4759052