_statistics_format_item
- Versions
- 4.6
_statistics_format_item($title,$link)- 4.7 – 7
_statistics_format_item($title, $path)
Code
modules/statistics.module, line 474
<?php
function _statistics_format_item($title, $link) {
$link = ($link ? $link : '/');
$output = ($title ? "$title<br />" : '');
$output .= l($link, $link);
return $output;
}
?>Login or register to post comments 