diff --git a/main/group/group_space.php b/main/group/group_space.php index 8a628b1aa7..2bc273e77e 100644 --- a/main/group/group_space.php +++ b/main/group/group_space.php @@ -158,7 +158,7 @@ if (api_is_allowed_to_edit() OR GroupManager :: is_user_in_group($_SESSION['_uid if( $current_group['doc_state'] != TOOL_NOT_AVAILABLE ) { // link to the documents area of this group - $tools .= "
 ".get_lang("GroupDocument")."
"; + $tools .= "
 ".get_lang("GroupDocument")."
"; } if ( $current_group['calendar_state'] != TOOL_NOT_AVAILABLE) { @@ -184,27 +184,27 @@ else $tools = ''; if ($current_group['forum_state'] == TOOL_PUBLIC && !is_null($current_group['forum_id'])) { - $tools .= "- ".get_lang("Forums")."
"; + $tools .= " ".get_lang("Forums")."
"; } if( $current_group['doc_state'] == TOOL_PUBLIC ) { // link to the documents area of this group - $tools .= "- ".get_lang("GroupDocument")."
"; + $tools .= " ".get_lang("GroupDocument")."
"; } if ( $current_group['calendar_state'] == TOOL_PUBLIC ) { //link to a group-specific part of agenda - $tools .= "- ".get_lang("GroupCalendar")."
"; + $tools .= " ".get_lang("GroupCalendar")."
"; } if ( $current_group['work_state'] == TOOL_PUBLIC ) { //link to the works area of this group - $tools .= "- ".get_lang("GroupWork")."
"; + $tools .= " ".get_lang("GroupWork")."
"; } if ( $current_group['announcements_state'] == TOOL_PUBLIC) { //link to a group-specific part of announcements - $tools .= "- ".get_lang("GroupAnnouncements")."
"; + $tools .= " ".get_lang("GroupAnnouncements")."
"; } echo ''.get_lang("GroupTools").':
'.$tools.'
'; }