fix: No closure
This commit is contained in:
parent
324edc5550
commit
528d9af4f6
2 changed files with 4 additions and 3 deletions
|
|
@ -1,12 +1,14 @@
|
|||
7.3.8
|
||||
- Fixed a template variable rewriting problem with HTML::Template::Expr
|
||||
- Added a attachment_thumbnail option to the CS RSS feed.
|
||||
- fix: No closure
|
||||
- No Reports In/Out Board (perlDreamer Consulting, LLC)
|
||||
- fix: The 7.2.3-7.3.0 upgrade will no longer orphan EventsCalendars
|
||||
and Events on the clipboard.
|
||||
- fix: The upgrade script will remove any orphaned EventsCalendars and
|
||||
Events.
|
||||
|
||||
|
||||
7.3.7
|
||||
- Fixed a template variable rewriting problem with Template Toolkit.
|
||||
- Fixed a bug with dealing with CS posts via email where
|
||||
|
|
|
|||
|
|
@ -398,9 +398,8 @@ sub getLineage {
|
|||
|
||||
my $statusCodes = $rules->{statusToInclude} || [];
|
||||
if($rules->{includeArchived}) {
|
||||
if(!WebGUI::Utility::isIn($rules->{includeArchived},@{$statusCodes})) {
|
||||
push(@{$statusCodes},'archived');
|
||||
}
|
||||
push(@{$statusCodes},'archived') if(!WebGUI::Utility::isIn('archived',@{$statusCodes}));
|
||||
push(@{$statusCodes},'approved') if(!WebGUI::Utility::isIn('approved',@{$statusCodes}));
|
||||
}
|
||||
|
||||
my $status = "assetData.status='approved'";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue