Skip to content

Commit

Permalink
Fix double escape in update checker dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
appgurueu authored and sfan5 committed Sep 25, 2022
1 parent 7069d99 commit 8dec3a5
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions builtin/mainmenu/dlg_version_info.lua
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,8 @@ local function version_info_formspec(data)
"formspec_version[3]",
"size[12.8,7]",
"style_type[label;textcolor=#0E0]",
"label[0.5,0.8;", core.formspec_escape(title), "]",
"textarea[0.4,1.6;12,3.4;;;",
core.formspec_escape(message), "]",
"label[0.5,0.8;", title, "]",
"textarea[0.4,1.6;12,3.4;;;", message, "]",
"container[0.4,5.8]",
"button[0.0,0;4.0,0.8;version_check_visit;", fgettext("Visit website"), "]",
"button[4.5,0;3.5,0.8;version_check_remind;", fgettext("Later"), "]",
Expand Down

0 comments on commit 8dec3a5

Please sign in to comment.