fix: No closure

This commit is contained in:
JT Smith 2007-01-26 03:17:42 +00:00
parent 324edc5550
commit 528d9af4f6
2 changed files with 4 additions and 3 deletions

View file

@ -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

View file

@ -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'";