From 6a9a4bb0a0d08eb2afffc5e1bc9c796207e14605 Mon Sep 17 00:00:00 2001 From: JT Smith Date: Thu, 12 Oct 2006 01:11:23 +0000 Subject: [PATCH] Search from root --- docs/changelog/7.x.x.txt | 1 + lib/WebGUI/Operation/FormHelpers.pm | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt index 01bef3e53..52a538274 100644 --- a/docs/changelog/7.x.x.txt +++ b/docs/changelog/7.x.x.txt @@ -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 diff --git a/lib/WebGUI/Operation/FormHelpers.pm b/lib/WebGUI/Operation/FormHelpers.pm index 4d6230f02..834c279bb 100644 --- a/lib/WebGUI/Operation/FormHelpers.pm +++ b/lib/WebGUI/Operation/FormHelpers.pm @@ -82,7 +82,7 @@ sub www_formAssetTree {
'.join(" > ", @crumb)."

\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}) {