mirror of
https://github.com/minetest/minetest.git
synced 2024-12-24 23:22:24 +01:00
core.formspec_escape: Restore backwards compat
Support numbers as arguments by using `string.gsub(text, ...)` instead of `text:gsub(...)` which will coerce `text` to a string
This commit is contained in:
parent
951604e29f
commit
edc7df5480
@ -254,7 +254,7 @@ local formspec_escapes = {
|
|||||||
}
|
}
|
||||||
function core.formspec_escape(text)
|
function core.formspec_escape(text)
|
||||||
-- Use explicit character set instead of dot here because it doubles the performance
|
-- Use explicit character set instead of dot here because it doubles the performance
|
||||||
return text and text:gsub("[\\%[%];,]", formspec_escapes)
|
return text and string.gsub(text, "[\\%[%];,]", formspec_escapes)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user