By the default it is using >>\n
what does \n do?
I'd like this to point to the image management tool, I thought this would work, but it doesn't seem to locate the image (no errors at least) is my syntax corect?
while ($onecontent = array_pop($allcontent))
{
if ($onecontent->Id() != $thispage && $onecontent->Type() != 'seperator')
{
if ($onecontent->Type() == 'sectionheader')
{
if (getURL($thispage)!="")
{
$trail .= $onecontent->MenuText()." \n";
}
else
{
$trail .= $onecontent->MenuText()." \n";
}
}
else
{
if (getURL($thispage)!="")
{
$trail .= "getURL()."">".($onecontent->MenuText()!=''?$onecontent->MenuText():$onecontent->Name())." \n";
}
else
{
$trail .= ($onecontent->MenuText()!=''?$onecontent->MenuText():$onecontent->Name())." \n";
}
}
}
else
{
$trail .= "".($onecontent->MenuText()!=''?$onecontent->MenuText():$onecontent->Name())."\n";
}
}
}
else
{
$trail = "No pages";
}
return $trail;
}

