Index: trunk/kernel/admin/include/parser.php =================================================================== diff -u -N -r3230 -r6093 --- trunk/kernel/admin/include/parser.php (.../parser.php) (revision 3230) +++ trunk/kernel/admin/include/parser.php (.../parser.php) (revision 6093) @@ -136,11 +136,7 @@ { $o .= "Get("RelationshipId")."\">"; $cat = $objCatList->GetByResource($catrel->Get("TargetId")); - $path = $cat->ParentNames(); - if(strlen($path)) - { - $o .= implode(">",$path); - } + $o .= $cat->GetCachedNavBar(); $o .="
\n"; } } @@ -166,11 +162,7 @@ $o .= "".$data["SourceTable"].""; $cat =& $objCatList->GetCategory($data["CategoryId"]); $o .= ""; - $path = $cat->ParentNames(); - if(strlen($path)) - { - $o .= implode(">",$path); - } + $o .= $cat->GetCachedNavBar(); $o .= ""; } } @@ -244,7 +236,7 @@ switch($info_type) { case 'rel_list': // Edit Category -> Relations List - return Array( 'MainTable' => 'Category', 'ItemNameField' => 'CachedNavbar', + return Array( 'MainTable' => 'Category', 'ItemNameField' => 'CachedNavbar', // not used, because we have all relations new sections 'ItemNamePhrase' => 'la_Text_Category', 'TargetType' => 1); break;