Changed style to visualice data in 'Group view' tiquet: #1879

This commit is contained in:
m-lopez-f 2015-03-18 13:11:30 +01:00
parent 6c1b434565
commit c287a2064a
2 changed files with 6 additions and 3 deletions

View File

@ -2759,7 +2759,7 @@ function groups_get_group_deep ($id_group) {
$deep = ""; $deep = "";
} }
else { else {
$deep = str_repeat("    ", count($parents)); $deep = str_repeat("  ", count($parents));
} }
return $deep; return $deep;

View File

@ -156,7 +156,10 @@ if (!empty($result_groups)) {
if (isset($data['_iconImg_']) && !empty($data['_iconImg_'])) if (isset($data['_iconImg_']) && !empty($data['_iconImg_']))
$item_icon = $data['_iconImg_']; $item_icon = $data['_iconImg_'];
echo $link . $deep . $item_icon ."&nbsp;" . $group_name . "</a>"; if ($data['_name_'] != "All")
echo $deep . $link . $group_name . "</a>";
else
echo $link . $group_name . "</a>";
echo "</td>"; echo "</td>";