From ea0b4df5f15dadbb6229af970251044c8e349baf Mon Sep 17 00:00:00 2001 From: quasi Date: Mon, 28 Mar 2011 11:40:30 +0000 Subject: [PATCH] RelatedLink ContentType ist nun auch static git-svn-id: https://svn.libreccm.org/ccm/trunk@804 8810af33-2d31-482b-a856-94f89814c4df --- .../cms/contentassets/ui/RelatedLinkPropertiesStep.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ccm-cms-assets-relatedlink/src/com/arsdigita/cms/contentassets/ui/RelatedLinkPropertiesStep.java b/ccm-cms-assets-relatedlink/src/com/arsdigita/cms/contentassets/ui/RelatedLinkPropertiesStep.java index 5ddb05da4..da1b5bf03 100755 --- a/ccm-cms-assets-relatedlink/src/com/arsdigita/cms/contentassets/ui/RelatedLinkPropertiesStep.java +++ b/ccm-cms-assets-relatedlink/src/com/arsdigita/cms/contentassets/ui/RelatedLinkPropertiesStep.java @@ -30,7 +30,7 @@ import com.arsdigita.cms.contenttypes.ui.LinkTable; public class RelatedLinkPropertiesStep extends LinkPropertiesStep { protected static String s_linkListName = "genericLink"; - protected ContentType m_contentType = null; + protected static ContentType s_contentType = null; /** * Constructor. Creates a RelatedLinkPropertiesStep given an @@ -87,7 +87,7 @@ public class RelatedLinkPropertiesStep extends LinkPropertiesStep { return new RelatedLinkPropertyForm(getItemSelectionModel(), getLinkSelectionModel(), s_linkListName, - m_contentType); + s_contentType); } }