From 3db6d44feb598cf759d62925200246460c77be8a Mon Sep 17 00:00:00 2001 From: Sara Arjona Date: Wed, 12 Aug 2020 12:54:00 +0200 Subject: [PATCH] MDL-42434 mod_chat: add again the usingchat help icon In Moodle 2.4 the help icon displayed in the chat window was removed. It has been added to gui_ajax and gui_basic in order to help users. --- mod/chat/gui_ajax/index.php | 8 +++++--- mod/chat/gui_basic/index.php | 4 +++- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/mod/chat/gui_ajax/index.php b/mod/chat/gui_ajax/index.php index d1a15af07c9..2e3b1f0be1a 100644 --- a/mod/chat/gui_ajax/index.php +++ b/mod/chat/gui_ajax/index.php @@ -97,13 +97,15 @@ echo $OUTPUT->box(html_writer::tag('h2', get_string('messages', 'chat'), array( '', '', 'chat-messages'); $table = new html_table(); $table->data = array( - array('
'. + array('
')); echo $OUTPUT->box(html_writer::tag('h2', get_string('composemessage', 'chat'), array('class' => 'accesshide')) . html_writer::table($table), '', 'chat-input-area'); echo $OUTPUT->box('', '', 'chat-notify'); diff --git a/mod/chat/gui_basic/index.php b/mod/chat/gui_basic/index.php index 0c3f631ce31..9001f7de7df 100644 --- a/mod/chat/gui_basic/index.php +++ b/mod/chat/gui_basic/index.php @@ -149,7 +149,9 @@ echo $OUTPUT->box_end(); echo '
'; echo '
'; -echo '

'; +echo '

'; echo '
'; echo ''; echo '
';