Skip to content

Commit

Permalink
Fix encoding in R&D server controller
Browse files Browse the repository at this point in the history
  • Loading branch information
m-dzianishchyts committed Jan 29, 2024
1 parent 2b75cbc commit 0b2c2f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/research/server.dm
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@
for(var/obj/machinery/r_n_d/server/S in servers)
dat += "[S.name] <A href='?src=[UID()];send_to=[S.server_id]'> (Transfer)</A><BR>"
dat += "<HR><A href='?src=[UID()];main=1'>Main Menu</A>"
user << browse("<TITLE>R&D Server Control</TITLE><HR>[dat]", "window=server_control;size=575x400")
user << browse("<TITLE>R&D Server Control</TITLE><HR><meta charset='UTF-8'>[dat]", "window=server_control;size=575x400") // SS220 EDIT - ORIGINAL: "<TITLE>R&D Server Control</TITLE><HR>[dat]", "window=server_control;size=575x400"
onclose(user, "server_control")
return

Expand Down

0 comments on commit 0b2c2f5

Please sign in to comment.