1
0
mirror of https://github.com/moparisthebest/minetest synced 2024-08-13 16:53:49 -04:00

Add escaping to world list in main menu (fixes #896).

This commit is contained in:
Ilya Zhuravlev 2013-08-29 16:12:16 +04:00
parent d470842e8e
commit 82e1ab7b2b

View File

@ -169,8 +169,8 @@ function menu.render_world_list()
retval = retval ..","
end
retval = retval .. v.name ..
" \\[" .. v.gameid .. "\\]"
retval = retval .. engine.formspec_escape(v.name) ..
" \\[" .. engine.formspec_escape(v.gameid) .. "\\]"
end
return retval