Archived content should be shown in the Account/Contributions screen. Fixes bug #11643.

This commit is contained in:
Colin Kuskie 2010-06-15 14:11:26 -07:00
parent 169fa47cdc
commit f7e0c9f940
2 changed files with 4 additions and 2 deletions

View file

@ -19,6 +19,7 @@
- fixed #11629: WebGUI Collateral Manager = Error
- fixed #11622: Archived CSS entries displayable.
- fixed #11560: Email footer hidden from Outlook users
- fixed #11643: Account/Contributions: does not show archived content
7.9.6
- new checkbox in the asset manager for clearing the package flag on import

View file

@ -180,8 +180,9 @@ sub www_view {
'WebGUI::Asset::WikiPage',
'WebGUI::Asset::Post::Thread',
],
whereClause => "asset.createdBy = '$userId' or assetData.ownerUserId = '$userId'",
orderByClause => "$sortBy $sortDir"
statusToInclude => [ qw/approved archived/ ],
whereClause => "asset.createdBy = '$userId' or assetData.ownerUserId = '$userId'",
orderByClause => "$sortBy $sortDir"
}
);