Use RequestEvaluator.invokeDirectFunction() rather than ScriptingEngine.invoke()
This commit is contained in:
parent
38ef27fbce
commit
6f8907c6bd
1 changed files with 3 additions and 3 deletions
|
@ -485,9 +485,9 @@ public final class Skin {
|
|||
// arguments[0] = new SystemMap(parameters);
|
||||
}
|
||||
|
||||
Object value = reval.scriptingEngine.invoke(handlerObject,
|
||||
funcName, arguments,
|
||||
false);
|
||||
Object value = reval.invokeDirectFunction(handlerObject,
|
||||
funcName,
|
||||
arguments);
|
||||
|
||||
// check if macro wrote out to response buffer
|
||||
if (buffer.length() == (bufLength + preLength)) {
|
||||
|
|
Loading…
Add table
Reference in a new issue