"README.md" did not exist on "e139a8ba117549667e5f8c4289cfa254de7025a2"
Newer
Older
<?php
function smarty_function_buildpath($params, &$smarty) {
if ($params['item']=="") return "/";
foreach ($params['list'] as $crumb) {
if ($crumb!="") $output.="/".$crumb;
if ($crumb==$params['item']) return $output;
}
}
?>