diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt index e7a1ea36b..c92ba6634 100644 --- a/docs/changelog/7.x.x.txt +++ b/docs/changelog/7.x.x.txt @@ -17,6 +17,7 @@ - fixed #11619: Trash Expired Events not trashing events - fixed #11623: Navigation CSS-id - fixed #11629: WebGUI Collateral Manager = Error + - fixed #11622: Archived CSS entries displayable. 7.9.6 - new checkbox in the asset manager for clearing the package flag on import diff --git a/lib/WebGUI/Account/Contributions.pm b/lib/WebGUI/Account/Contributions.pm index d5e38c671..1a5a59252 100644 --- a/lib/WebGUI/Account/Contributions.pm +++ b/lib/WebGUI/Account/Contributions.pm @@ -200,12 +200,6 @@ sub www_view { my $asset = WebGUI::Asset->newByDynamicClass( $session, $assetId ); my $props = $asset->get; $props->{url} = $asset->getUrl; - if (ref $asset eq "WebGUI::Asset::Post") { - $asset = $asset->getThread; - $props = $asset->get; - $props->{className} = "WebGUI::Asset::Post"; - } - push(@contribs,$props); } my $contribsCount = $p->getRowCount;