Portal Admin Seite funktioniert wieder, Benennungskonvention nicht richtig interpretiert.
git-svn-id: https://svn.libreccm.org/ccm/trunk@896 8810af33-2d31-482b-a856-94f89814c4dfmaster
parent
90b0f6e70e
commit
74fb0b9aa4
|
|
@ -56,7 +56,7 @@ public class ApplicationPatternGenerator implements PatternGenerator {
|
|||
final Application app = Web.getContext().getApplication();
|
||||
if (app != null) {
|
||||
String[] returnValue = { app.getApplicationType().getName() };
|
||||
s_log.warn("Found application >>"+returnValue+"<< in Application.");
|
||||
s_log.debug("Found application >>"+returnValue+"<< in Application.");
|
||||
return returnValue;
|
||||
}
|
||||
|
||||
|
|
@ -84,7 +84,7 @@ public class ApplicationPatternGenerator implements PatternGenerator {
|
|||
return returnValue;
|
||||
}
|
||||
|
||||
s_log.warn("ApplicationType for " +key +
|
||||
s_log.debug("ApplicationType for " +key +
|
||||
" could not be found in SiteNodes either. Returning empty String[]");
|
||||
|
||||
return new String[] {};
|
||||
|
|
|
|||
|
|
@ -867,12 +867,12 @@ public class URL {
|
|||
return url;
|
||||
}
|
||||
|
||||
public static final URL excursion(final HttpServletRequest sreq,
|
||||
public final URL excursion(final HttpServletRequest sreq,
|
||||
final String path) {
|
||||
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),
|
||||
(ParameterMap) s_empty.get());
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue