mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 22:08:20 +01:00
MDL-23184 chat supports html only input
This commit is contained in:
parent
a8320bc431
commit
f4091f8e37
@ -5,7 +5,7 @@ require_once('../lib.php');
|
||||
|
||||
$id = required_param('id', PARAM_INT);
|
||||
$groupid = optional_param('groupid', 0, PARAM_INT); // only for teachers
|
||||
$message = optional_param('message', '', PARAM_CLEAN);
|
||||
$message = optional_param('message', '', PARAM_CLEANHTML);
|
||||
$refresh = optional_param('refresh', '', PARAM_RAW); // force refresh
|
||||
$last = optional_param('last', 0, PARAM_INT); // last time refresh or sending
|
||||
$newonly = optional_param('newonly', 0, PARAM_BOOL); // show only new messages
|
||||
|
Loading…
x
Reference in New Issue
Block a user