mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-30 16:47:13 +01:00
[MIRROR] Fix: player panel encoding [MDB IGNORE] (#21356)
* Fix: player panel encoding (#75584) ## About The Pull Request Fixes ?typo? in player panel html. Now non English text looks fine. ## Why It's Good For The Game Forks that allow non English names now can see them in player panel properly. ## Changelog 🆑 admin: If you are on a downstream server using non-Latin fonts (e.g. Cyrillic) for character/job names: The player panel encoding has been fixed so it should show up properly for you now. /🆑 * Fix: player panel encoding --------- Co-authored-by: Furior <68264134+Furrior@users.noreply.github.com>
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
if(!check_rights())
|
||||
return
|
||||
log_admin("[key_name(usr)] checked the player panel.")
|
||||
var/dat = "<html><head><meta http-equiv='X-UA-Compatible' content='IE=edge; charset=UTF-8'/><title>Player Panel</title></head>"
|
||||
var/dat = "<html><head><meta http-equiv='X-UA-Compatible' content='IE=edge' charset='UTF-8'/><title>Player Panel</title></head>"
|
||||
|
||||
//javascript, the part that does most of the work~
|
||||
dat += {"
|
||||
|
||||
Reference in New Issue
Block a user