From 4ff61f2653670e016a2ceabb2ec8fb31fba1b38d Mon Sep 17 00:00:00 2001 From: dj-34 Date: Sun, 20 Oct 2024 16:55:37 +0500 Subject: [PATCH 1/2] Add UTF-8 Charset for watchlist --- code/modules/admin/watchlist.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/admin/watchlist.dm b/code/modules/admin/watchlist.dm index 6e03603ed5d4..bd225c0644a4 100644 --- a/code/modules/admin/watchlist.dm +++ b/code/modules/admin/watchlist.dm @@ -142,6 +142,6 @@ output += "[ckey] | Added by [adminckey] on [timestamp] \[Remove\] \[Edit Reason\]" if(last_editor) output += " Last edit by [last_editor] (Click here to see edit log)" - output += "
[reason]
" + output += "
[reason]
" usr << browse(output, "window=watchwin;size=900x500") qdel(query_watchlist) From 93988ed0002fd54a6952ef57fce69dcc428b43c2 Mon Sep 17 00:00:00 2001 From: dj-34 Date: Thu, 24 Oct 2024 22:29:30 +0500 Subject: [PATCH 2/2] Move charset --- code/modules/admin/watchlist.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/admin/watchlist.dm b/code/modules/admin/watchlist.dm index bd225c0644a4..4cd869e6e8b5 100644 --- a/code/modules/admin/watchlist.dm +++ b/code/modules/admin/watchlist.dm @@ -116,7 +116,7 @@ if(!check_rights(R_ADMIN)) return var/output - output += "
\ + output += "\ \ \
" @@ -142,6 +142,6 @@ output += "[ckey] | Added by [adminckey] on [timestamp] \[Remove\] \[Edit Reason\]" if(last_editor) output += " Last edit by [last_editor] (Click here to see edit log)" - output += "
[reason]
" + output += "
[reason]
" usr << browse(output, "window=watchwin;size=900x500") qdel(query_watchlist)