Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix encoding in R&D server controller #968

Merged
merged 2 commits into from
Jan 29, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Fix encoding in R&D server controller
m-dzianishchyts committed Jan 29, 2024
commit 0b2c2f522521b6e2465da1bfb3a97a7b2c80c601
2 changes: 1 addition & 1 deletion code/modules/research/server.dm
Original file line number Diff line number Diff line change
@@ -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