fix - Payment in commerce system

This commit is contained in:
Roy Johnson 2006-06-21 21:25:51 +00:00
parent 333618efc8
commit d2cbbef381
2 changed files with 2 additions and 1 deletions

View file

@ -127,7 +127,7 @@ sub configurationForm {
$f->yesNo(
-name => $self->prepend('completeTransaction'),
-value => $self->get('completeTransaction') || 1,
-value => ($self->get('completeTransaction') eq "0" ? 0 : $self->get('completeTransaction') || 1),
-label => $i18n->get('complete transaction'),
-hoverHelp => $i18n->get('complete transaction description'),
);