From: Mathieu Baudier Date: Tue, 23 Aug 2022 09:47:02 +0000 (+0200) Subject: Fix after changes in Argeo Commons X-Git-Tag: v2.3.8~55 X-Git-Url: https://git.argeo.org/?p=gpl%2Fargeo-suite.git;a=commitdiff_plain;h=e2156d0cc52962cec52bf2bd57eca6093f7877bf Fix after changes in Argeo Commons --- diff --git a/org.argeo.app.core/OSGI-INF/termsManager.xml b/org.argeo.app.core/OSGI-INF/termsManager.xml index 8430b7a..797c5a3 100644 --- a/org.argeo.app.core/OSGI-INF/termsManager.xml +++ b/org.argeo.app.core/OSGI-INF/termsManager.xml @@ -1,7 +1,7 @@ - + diff --git a/org.argeo.app.ui/src/org/argeo/app/ui/SuiteApp.java b/org.argeo.app.ui/src/org/argeo/app/ui/SuiteApp.java index 50a7f80..d59edd5 100644 --- a/org.argeo.app.ui/src/org/argeo/app/ui/SuiteApp.java +++ b/org.argeo.app.ui/src/org/argeo/app/ui/SuiteApp.java @@ -224,7 +224,8 @@ public class SuiteApp extends AbstractCmsApp implements CmsEventSubscriber { // FIXME NPE on CMSSession when logging in from anonymous if (cmsSession == null || cmsView.isAnonymous()) { assert publicBasePath != null; - Content userDir = contentSession.get(CmsConstants.SYS_WORKSPACE + publicBasePath); + Content userDir = contentSession + .get(ContentUtils.SLASH + CmsConstants.SYS_WORKSPACE + publicBasePath); ui.setUserDir(userDir); // ui.initSessions(getRepository(), publicBasePath); } else {