Fix a bug in the HTMLArea, introduced with the lineageIterator changes. Fixes bug #11629.
This commit is contained in:
parent
71d4880635
commit
fc1e356cfe
2 changed files with 2 additions and 1 deletions
|
|
@ -16,6 +16,7 @@
|
||||||
- fixed #11616: No access to /root
|
- fixed #11616: No access to /root
|
||||||
- fixed #11619: Trash Expired Events not trashing events
|
- fixed #11619: Trash Expired Events not trashing events
|
||||||
- fixed #11623: Navigation CSS-id
|
- fixed #11623: Navigation CSS-id
|
||||||
|
- fixed #11629: WebGUI Collateral Manager = Error
|
||||||
|
|
||||||
7.9.6
|
7.9.6
|
||||||
- new checkbox in the asset manager for clearing the package flag on import
|
- new checkbox in the asset manager for clearing the package flag on import
|
||||||
|
|
|
||||||
|
|
@ -297,7 +297,7 @@ JS
|
||||||
$output .= '<div class="crumbTrail">'.join(" > ", @crumb)."</div>\n<ul>";
|
$output .= '<div class="crumbTrail">'.join(" > ", @crumb)."</div>\n<ul>";
|
||||||
|
|
||||||
my $useAssetUrls = $session->config->get("richEditorsUseAssetUrls");
|
my $useAssetUrls = $session->config->get("richEditorsUseAssetUrls");
|
||||||
my $children = $base->getLineage(["children"]);
|
my $children = $base->getLineageIterator(["children"]);
|
||||||
while ( my $child = $children->() ) {
|
while ( my $child = $children->() ) {
|
||||||
next unless $child->canView;
|
next unless $child->canView;
|
||||||
$output .= '<li>';
|
$output .= '<li>';
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue