fixed: #10109: Matrix 2.0 - Updates to product listing by maintainer account require admin approval

This commit is contained in:
Yung Han Khoe 2009-04-19 16:59:58 +00:00
parent 70fc3e2d11
commit 7512724239
2 changed files with 6 additions and 1 deletions

View file

@ -32,6 +32,7 @@
- added Survey Number type. Text number entry that uses slider restrictions as constraints (server and client side). You can also use the arrow keys
to increment or decrement the number enter. If slider constraints are blank, no rules applied.
- added: ThingyRecord allows you to sell records in a Thingy (like a classified ad)
- fixed: #10109: Matrix 2.0 - Updates to product listing by maintainer account require admin approval
7.7.3
- fixed #10094: double explanation in thread help

View file

@ -247,7 +247,11 @@ By specifying this method, you activate this feature.
sub getAutoCommitWorkflowId {
my $self = shift;
return $self->getParent->get("submissionApprovalWorkflowId");
if($self->session->form->process("assetId") eq "new"){
return $self->getParent->get("submissionApprovalWorkflowId");
}
return undef;
}
#-------------------------------------------------------------------