diff --git a/code/controllers/subsystems/records.dm b/code/controllers/subsystems/records.dm index a0105ae3942..19ba7c77e6c 100644 --- a/code/controllers/subsystems/records.dm +++ b/code/controllers/subsystems/records.dm @@ -243,8 +243,8 @@ "bot" = nonhuman_positions ) for(var/datum/record/general/t in records) - var/name = sanitize(t.name) - var/rank = sanitize(t.rank) + var/name = sanitize(t.name, encode = FALSE) + var/rank = sanitize(t.rank, encode = FALSE) var/real_rank = make_list_rank(t.real_rank) var/isactive = t.physical_status diff --git a/html/changelogs/geeves-manifest_fix.yml b/html/changelogs/geeves-manifest_fix.yml new file mode 100644 index 00000000000..6b816b77575 --- /dev/null +++ b/html/changelogs/geeves-manifest_fix.yml @@ -0,0 +1,6 @@ +author: Geeves + +delete-after: True + +changes: + - bugfix: "The Crew Manifest now plays nice with quotes and apostrophes." \ No newline at end of file