diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt index 15cddc68c..47aa82ea1 100644 --- a/docs/changelog/7.x.x.txt +++ b/docs/changelog/7.x.x.txt @@ -6,6 +6,7 @@ - fixed #9404: Head tags for admin user with admin mode off - fixed #9507: Navigation: relDepth is calculated with starting point, instead of the first displayed page - fixed a bug where no Payment Gateway labels show up when checking out. + - fixed #9511: Subcategories displayed incorrectly 7.6.8 - added #!/usr/bin/env perl to all utility scripts diff --git a/lib/WebGUI/Asset/Wobject/Shelf.pm b/lib/WebGUI/Asset/Wobject/Shelf.pm index cac74a3ab..633025e69 100644 --- a/lib/WebGUI/Asset/Wobject/Shelf.pm +++ b/lib/WebGUI/Asset/Wobject/Shelf.pm @@ -277,7 +277,8 @@ sub view { my @childShelves = (); foreach my $child (@{$self->getLineage(['children'],{returnObjects=>1,includeOnlyClasses=>['WebGUI::Asset::Wobject::Shelf']})}) { my $properties = $child->get; - $child->{url} = $self->getUrl; + $child->{url} = $child->getUrl; + $child->{title} = $child->getTitle; push @childShelves, $child; }