From 80a6dcc5928278b600f55ea5f3e9ce7c5a2682a9 Mon Sep 17 00:00:00 2001 From: jensp Date: Thu, 8 Dec 2011 14:09:37 +0000 Subject: [PATCH] =?UTF-8?q?BugFix=20f=C3=BCr=20das=20Handling=20von=20Spra?= =?UTF-8?q?chvarianten?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: https://svn.libreccm.org/ccm/trunk@1323 8810af33-2d31-482b-a856-94f89814c4df --- ccm-cms/src/com/arsdigita/cms/ContentBundle.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ccm-cms/src/com/arsdigita/cms/ContentBundle.java b/ccm-cms/src/com/arsdigita/cms/ContentBundle.java index 21666748e..4d7d574ec 100755 --- a/ccm-cms/src/com/arsdigita/cms/ContentBundle.java +++ b/ccm-cms/src/com/arsdigita/cms/ContentBundle.java @@ -339,7 +339,7 @@ public class ContentBundle extends ContentItem { // if we couldn't find an exact match and language independent // content items are acceptable. if (contentItem == null && allowLanguageIndependent == true) { - contentItem = this.getInstance("--", false); + contentItem = this.getInstance(GlobalizationHelper.LANG_INDEPENDENT, false); } return contentItem;