Revert osReplaceString change.

osReplaceString requires a regular expression, causing problems with regex-reserved characters.
This commit is contained in:
Sei Lisa 2017-08-22 14:37:23 +02:00 committed by Sei-Lisa
parent cbb82150db
commit 1d9717b16b

View file

@ -112,7 +112,7 @@ list order_buttons(list buttons)
string strReplace(string str, string search, string replace)
{
return llDumpList2String(llParseStringKeepNulls(str, [search], []), replace); // OSS::return osReplaceString(str, search, replace, -1, 0);
return llDumpList2String(llParseStringKeepNulls(str, [search], []), replace);
}
preview_anim(string anim, key id)