diff --git a/src/helma/framework/core/Application.java b/src/helma/framework/core/Application.java index 2040421b..72833213 100644 --- a/src/helma/framework/core/Application.java +++ b/src/helma/framework/core/Application.java @@ -1740,8 +1740,8 @@ public final class Application implements IPathElement, Runnable { return true; } } - // no parent or parent not in app's repositories. - repositories.add(0, rep); + // no parent or parent not in app's repositories, add at end of list. + repositories.add(rep); return true; } return false;