From 5431daadcfad8ad38c0ea2abadb732f736b8c5af Mon Sep 17 00:00:00 2001 From: hns Date: Mon, 16 Jun 2003 19:48:35 +0000 Subject: [PATCH] Changed default scripting engine to helma.scripting.rhino.RhinoEngine. --- src/helma/framework/core/RequestEvaluator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helma/framework/core/RequestEvaluator.java b/src/helma/framework/core/RequestEvaluator.java index 3f4c870b..00cbd00b 100644 --- a/src/helma/framework/core/RequestEvaluator.java +++ b/src/helma/framework/core/RequestEvaluator.java @@ -77,7 +77,7 @@ public final class RequestEvaluator implements Runnable { protected void initScriptingEngine() { if (scriptingEngine == null) { String engineClassName = app.getProperty("scriptingEngine", - "helma.scripting.fesi.PhantomEngine"); + "helma.scripting.rhino.RhinoEngine"); try { Class clazz = app.getClassLoader().loadClass(engineClassName);