mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 08:56:36 +02:00
fix for MDL-13173: quotes in HotPot activity name
This commit is contained in:
parent
14c5382464
commit
c447099bda
1 changed files with 1 additions and 1 deletions
|
@ -77,7 +77,7 @@ $text_source_options = array(
|
|||
} else {
|
||||
print '<input type="hidden" name="namesource" value="'.HOTPOT_TEXTSOURCE_SPECIFIC.'" />';
|
||||
}
|
||||
print '<input type="text" name="name" size="40" value="'.$form->name.'" />';
|
||||
print '<input type="text" name="name" size="40" value="'.htmlspecialchars($form->name).'" />';
|
||||
?></td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue