Re: Recent update changed breadcrumbs
Posted: Mon May 28, 2007 1:52 pm
In Version 1.7 of breadcrumbs the line already is included asSerialthunder wrote:
with:AlbyCode: Select all
if (strtolower($content->Alias())!=strtolower($root)) <---- == with !=
Code: Select all
if (strtolower($content->Alias())!=strtolower($root)) <---- == with !=
Perhaps the selection doesn't work !?
So what should I do now
[/quote]
My mistake
search in file and substitute:
Code: Select all
$content = &$currentNode->getContent();
if (isset($content) && (strtolower($content->Alias()) == strtolower($root)))
{
Code: Select all
$content = &$currentNode->getContent();
if (isset($content) && (strtolower($content->Alias()) != strtolower($root)))
{
Alby