Corrected a bunch of over-escaping. (#24876)

* Corrected a bunch of over-escaping.

* unundefine

* Fixed #23759

* Apply suggestions from code review

Co-authored-by: Burzah <116982774+Burzah@users.noreply.github.com>

* Review fix

---------

Co-authored-by: Burzah <116982774+Burzah@users.noreply.github.com>
This commit is contained in:
Charlie Nolan
2024-04-07 02:59:15 -07:00
committed by GitHub
parent 0bfe115003
commit 6c4a80d2e5
21 changed files with 48 additions and 43 deletions
+1 -1
View File
@@ -2438,7 +2438,7 @@
if(!input)
qdel(P)
return
input = admin_pencode_to_html(html_encode(input)) // Encode everything from pencode to html
input = admin_pencode_to_html(input) // Encode everything from pencode to html
var/customname = clean_input("Pick a title for the fax.", "Fax Title", null, owner)
if(!customname)
+1 -1
View File
@@ -60,7 +60,7 @@
SEND_SOUND(X, sound('sound/effects/adminhelp.ogg'))
/proc/ERT_Announce(text, mob/Sender, repeat_warning)
var/msg = sanitizeSafe(text)
var/msg = sanitize(text)
var/insert_this = list(list(
"time" = station_time_timestamp(),
"sender_real_name" = "[Sender.real_name ? Sender.real_name : Sender.name]",