Skip to content
Snippets Groups Projects
Commit 596843da authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Crop long columns.

parent 2f28cc0b
No related branches found
No related tags found
No related merge requests found
......@@ -475,7 +475,7 @@ function _statistics_column_width($column, $width = 35) {
function _statistics_format_item($title, $link) {
$link = ($link ? $link : '/');
$output = ($title ? "$title<br />" : '');
$output .= l($link, $link);
$output .= l(_statistics_column_width($link), $link);
return $output;
}
......
......@@ -475,7 +475,7 @@ function _statistics_column_width($column, $width = 35) {
function _statistics_format_item($title, $link) {
$link = ($link ? $link : '/');
$output = ($title ? "$title<br />" : '');
$output .= l($link, $link);
$output .= l(_statistics_column_width($link), $link);
return $output;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment