This commit is contained in:
Vicent Llopis 2023-02-02 08:15:10 +01:00
parent 4f6636b51c
commit 617b44d90e
1 changed files with 2 additions and 0 deletions

View File

@ -363,6 +363,8 @@ function replaceVariables(text){
sql = sql.replaceAll('$__timeFrom()', 1);
sql = sql.replaceAll('$__timeTo()', 1);
sql = sql.replaceAll(/\$\w+/g, 1);
sql = sql.replaceAll('${__from}', 1);
sql = sql.replaceAll('${__to}', 1);
return sql;
}