Portal Admin Seite funktioniert wieder, Benennungskonvention nicht richtig interpretiert.

git-svn-id: https://svn.libreccm.org/ccm/trunk@896 8810af33-2d31-482b-a856-94f89814c4df
master
pb 2011-05-05 08:31:54 +00:00
parent 90b0f6e70e
commit 74fb0b9aa4
3 changed files with 4 additions and 4 deletions

View File

@ -56,7 +56,7 @@ public class ApplicationPatternGenerator implements PatternGenerator {
final Application app = Web.getContext().getApplication(); final Application app = Web.getContext().getApplication();
if (app != null) { if (app != null) {
String[] returnValue = { app.getApplicationType().getName() }; String[] returnValue = { app.getApplicationType().getName() };
s_log.warn("Found application >>"+returnValue+"<< in Application."); s_log.debug("Found application >>"+returnValue+"<< in Application.");
return returnValue; return returnValue;
} }
@ -84,7 +84,7 @@ public class ApplicationPatternGenerator implements PatternGenerator {
return returnValue; return returnValue;
} }
s_log.warn("ApplicationType for " +key + s_log.debug("ApplicationType for " +key +
" could not be found in SiteNodes either. Returning empty String[]"); " could not be found in SiteNodes either. Returning empty String[]");
return new String[] {}; return new String[] {};

View File

@ -867,12 +867,12 @@ public class URL {
return url; return url;
} }
public static final URL excursion(final HttpServletRequest sreq, public final URL excursion(final HttpServletRequest sreq,
final String path) { final String path) {
return URL.excursion(sreq, path, new ParameterMap()); return URL.excursion(sreq, path, new ParameterMap());
} }
static final URL login(final HttpServletRequest sreq) { static URL login(final HttpServletRequest sreq) {
return URL.excursion(sreq, Util.getSecurityHelper().getLoginURL(sreq), return URL.excursion(sreq, Util.getSecurityHelper().getLoginURL(sreq),
(ParameterMap) s_empty.get()); (ParameterMap) s_empty.get());
} }