fixed: Commit w/ approval workflow can crash under race conditions resulting in permanently locked content.
This commit is contained in:
parent
db226238ce
commit
7f7b85e06a
2 changed files with 3 additions and 1 deletions
|
|
@ -7,6 +7,8 @@
|
|||
- fixed #9892: Typo in "Default Gallery View Album" Template [TEMPLATE]
|
||||
- fixed #9826: Inbox messages sent by email don't include from username
|
||||
- rfe: added Asset History browser (perlDreamer Consulting, LLC and Plain Black)
|
||||
- fixed: Commit w/ approval workflow can crash under race conditions
|
||||
resulting in permanently locked content (Martin Kamerbeek / Oqapi )
|
||||
|
||||
7.6.14
|
||||
- fixed: IE6 shows Admin Bar over Asset Manager
|
||||
|
|
|
|||
|
|
@ -344,7 +344,7 @@ sub setMessageCompleted {
|
|||
for my $messageId ( split /,/, $instance->getScratch("messageId") ) {
|
||||
if($messageId){
|
||||
my $message = $inbox->getMessage( $messageId );
|
||||
$message->setCompleted;
|
||||
$message->setCompleted if $message;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue