From 2a7fe39e24bdb47b257710783553634469de3e71 Mon Sep 17 00:00:00 2001 From: hns Date: Fri, 30 Apr 2004 16:04:07 +0000 Subject: [PATCH] Patch from Manfred: Make dbProps properties case sensitive --- 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 e10c48b4..aad39ac1 100644 --- a/src/helma/framework/core/Application.java +++ b/src/helma/framework/core/Application.java @@ -241,7 +241,7 @@ public final class Application implements IPathElement, Runnable { // create app-level db sources File dbpropfile = new File(appDir, "db.properties"); - dbProps = new SystemProperties(dbpropfile.getAbsolutePath(), sysDbProps); + dbProps = new SystemProperties(dbpropfile.getAbsolutePath(), sysDbProps, false); // the passwd file, to be used with the authenticate() function CryptFile parentpwfile = null;