Fixed lovebird.htmlescape() to have only one return value

This commit is contained in:
rxi 2017-04-26 19:16:26 +01:00
parent 93a2e190ea
commit b1fe4b54d9

View File

@ -497,7 +497,7 @@ end
function lovebird.htmlescape(str)
return str:gsub("<", "&lt;")
return ( str:gsub("<", "&lt;") )
end