Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/components/bitrix/search.page/templates/clear/
Upload File :
Current File : /var/www/homesaver/www/bitrix/components/bitrix/search.page/templates/clear/chain_template.php

<?
//Navigation chain template
if(!defined("B_PROLOG_INCLUDED") || B_PROLOG_INCLUDED!==true)die();

$arChainBody = array();
foreach($arCHAIN as $item)
{
	if(mb_strlen($item["LINK"]) < mb_strlen(SITE_DIR))
		continue;
	if($item["LINK"] <> "")
		$arChainBody[] = '<a href="'.$item["LINK"].'">'.htmlspecialcharsex($item["TITLE"]).'</a>';
	else
		$arChainBody[] = htmlspecialcharsex($item["TITLE"]);
}
return implode('&nbsp;/&nbsp;', $arChainBody);
?>