diff --git a/main/img/session.png b/main/img/session.png
new file mode 100644
index 0000000000..c4455ed848
Binary files /dev/null and b/main/img/session.png differ
diff --git a/main/inc/banner.inc.php b/main/inc/banner.inc.php
index ce03a88bdd..f73b8268b2 100755
--- a/main/inc/banner.inc.php
+++ b/main/inc/banner.inc.php
@@ -132,19 +132,22 @@ if ((api_get_setting('showonline', 'world') == 'true' AND !$_user['user_id']) OR
echo '
';
// Display the who's online of the platform
if ((api_get_setting('showonline', 'world') == 'true' AND !$_user['user_id']) OR (api_get_setting('showonline', 'users') == 'true' AND $_user['user_id'])) {
- echo '
'.get_lang('OnLine').' '.$number.'';
+ //echo '
'.get_lang('OnLine').' '.$number.'';
+ echo '
'.$number.'';
}
// Display the who's online for the course
if (is_array($_course) AND api_get_setting('showonline', 'course') == 'true' AND isset($_course['sysCode'])) {
- echo '('.$number_online_in_course.' '.get_lang('InThisCourse').')';
+ //echo '('.$number_online_in_course.' '.get_lang('InThisCourse').')';
+ echo '| '.Display::return_icon('course.gif', get_lang('UsersOnline').' '.get_lang('InThisCourse'), array('width'=>'13px')).' '.$number_online_in_course.' ';
}
// Display the who's online for the session
//if (api_get_setting('use_session_mode') == 'true' && isset($_user['user_id']) && api_is_coach()) {
- if (api_get_setting('use_session_mode') == 'true' && isset($_user['user_id']) && api_get_session_id() != 0) {
- echo ''.get_lang('UsersConnectedToMySessions').'';
+ if (api_get_setting('use_session_mode') == 'true' && isset($_user['user_id']) && api_get_session_id() != 0) {
+ //echo ''.get_lang('UsersConnectedToMySessions').'';
+ echo '| '.Display::return_icon('session.png', get_lang('UsersConnectedToMySessions'), array('width'=>'13px')).' ';
}
echo '';