Revert osReplaceString change.
osReplaceString requires a regular expression, causing problems with regex-reserved characters.
This commit is contained in:
parent
cbb82150db
commit
1d9717b16b
1 changed files with 1 additions and 1 deletions
|
@ -112,7 +112,7 @@ list order_buttons(list buttons)
|
||||||
|
|
||||||
string strReplace(string str, string search, string replace)
|
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)
|
preview_anim(string anim, key id)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue