Search from root

This commit is contained in:
JT Smith 2006-10-12 01:11:23 +00:00
parent 5906df9ec7
commit 6a9a4bb0a0
2 changed files with 2 additions and 1 deletions

View file

@ -1,5 +1,6 @@
7.1.1
- fix: some issues with asset exports not handling URLs with dots correctly
- fix: Search from root
7.1.0
- fix: mysql and mysqldump were transposed in upgrade.pl --help

View file

@ -82,7 +82,7 @@ sub www_formAssetTree {
</style></head><body>
<div class="base">
<div class="crumbTrail">'.join(" &gt; ", @crumb)."</div><br />\n";
my $children = $base->getLineage(["children"],{returnObjects=>1});
my $children = $base->getLineage(["children","self"],{returnObjects=>1});
my $i18n = WebGUI::International->new($session);
my $limit = $session->form->process("classLimiter","className");
foreach my $child (@{$children}) {