From 8b1c20d172cbd30591a16a7a6c91bff7e0afbb65 Mon Sep 17 00:00:00 2001 From: Julian Prud'homme Date: Fri, 2 Mar 2007 16:56:07 +0100 Subject: [PATCH] [svn r11348] add icons for the student view --- main/group/group_space.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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.'
'; }