From eafca524bcfb0993b45b939cba52184872be12ec Mon Sep 17 00:00:00 2001 From: hns Date: Tue, 12 Jul 2005 09:40:26 +0000 Subject: [PATCH] Do not ignore case (i.e. switch property names to lower case) for db properties. --- src/helma/framework/core/Application.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helma/framework/core/Application.java b/src/helma/framework/core/Application.java index bc7a3b71..d46e05bb 100644 --- a/src/helma/framework/core/Application.java +++ b/src/helma/framework/core/Application.java @@ -259,7 +259,7 @@ public final class Application implements IPathElement, Runnable { eventLogName = props.getProperty("eventLog", "helma."+name+".event"); // create app-level db sources - dbProps = new ResourceProperties(this, "db.properties", sysDbProps); + dbProps = new ResourceProperties(this, "db.properties", sysDbProps, false); // the passwd file, to be used with the authenticate() function CryptResource parentpwfile = null;