Subject: | $nos->err is *always* true |
$nos->err returns the equivalent of
undef . " : " . undef
when there are no errors. So something like this:
die_and_do_something() if $nos->err;
Is broken because $nos->err is always true.
Thanks so much for these modules, by the way!!
-Ashley Pond V