-
Improvement
-
Resolution: Unresolved
-
Minor
-
None
-
2.4
-
None
-
MOODLE_24_STABLE
The function attachment_names fills the log entry with the names of attachments with a comma between. But since there is not a space the history table can get very very wide.
Easy fix
line 107 in lib.php in function attachment_names
change
return implode(',', $only_named_files);
to
return implode(', ', $only_named_files);