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

@ -10,6 +10,7 @@
- fix: Problems with page.isSibling and page.inBranch
- Added new EMS event approval states
- Fix: 6.99.2-6.99.3 upgrade fails if spectre.conf doesn't exist
- fix: Payment in commerce system
6.99.4
- fix: better checking of selected template type

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'),
);