From a6e1340b0cbf79006d7784a983b1775e9f0a0257 Mon Sep 17 00:00:00 2001 From: tosmers Date: Sun, 15 Feb 2015 18:27:58 +0000 Subject: [PATCH] [UPDATE] In der Klasse ccm-portlet-bookmarks/src/com/arsdigita/portlet/bookmarks/ui/BookmarksPortletEditor.java die FormProcessException in der Zeile 309 umgebaut. git-svn-id: https://svn.libreccm.org/ccm/trunk@3206 8810af33-2d31-482b-a856-94f89814c4df --- .../portlet/bookmarks/ui/BookmarksPortletEditor.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ccm-portlet-bookmarks/src/com/arsdigita/portlet/bookmarks/ui/BookmarksPortletEditor.java b/ccm-portlet-bookmarks/src/com/arsdigita/portlet/bookmarks/ui/BookmarksPortletEditor.java index 6fdfe8874..868d83b2b 100644 --- a/ccm-portlet-bookmarks/src/com/arsdigita/portlet/bookmarks/ui/BookmarksPortletEditor.java +++ b/ccm-portlet-bookmarks/src/com/arsdigita/portlet/bookmarks/ui/BookmarksPortletEditor.java @@ -51,6 +51,7 @@ import com.arsdigita.portal.Portlet; import com.arsdigita.portlet.bookmarks.Bookmark; import com.arsdigita.portlet.bookmarks.BookmarkConstants; import com.arsdigita.portlet.bookmarks.BookmarksPortlet; +import com.arsdigita.portlet.bookmarks.util.GlobalizationUtil; import com.arsdigita.util.UncheckedWrapperException; import com.arsdigita.web.Application; import com.arsdigita.web.URL; @@ -305,7 +306,8 @@ public class BookmarksPortletEditor && fullUrl.indexOf("/content/") != -1 ) { // not watertight, but is reasonable check that user is trying // to specify a content item on this site - throw new FormProcessException(CONTENT_ITEM_NOT_FOUND); + throw new FormProcessException(GlobalizationUtil.globalize( + "bookmarks.error.content-item-not-found")); } }