mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-12 15:45:25 +01:00
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:
@@ -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)
|
||||
|
||||
@@ -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]",
|
||||
|
||||
Reference in New Issue
Block a user