Subject: | bugs in postentry |
There are two nearly-critical problems with postentry.
First: the POD indicates that the parameters should be enclosed in a hashref. This is not true, they should be passed as a list.
Second: the UA call to send the form to use.perl sends 1 or 0 for the journal_discuss option, when it should in fact send "enabled" or "disabled" It Just Works again if I replace the line in that pair for %data with:
journal_discuss=> ($params{comments} ? 'enabled' : 'disabled'),