From 4d8148da836fbc5846f748b9658eda60ca615e07 Mon Sep 17 00:00:00 2001 From: jensp Date: Mon, 3 Jun 2013 17:01:57 +0000 Subject: [PATCH] =?UTF-8?q?BugFix=20f=C3=BCr=20MPA.=20Aus=20unbekannten=20?= =?UTF-8?q?Gr=C3=BCnden=20wurde=20die=20ContentSection=20f=C3=BCr=20Articl?= =?UTF-8?q?eSections=20nicht=20mehr=20korrekt=20gesetzt,=20was=20beim=20Au?= =?UTF-8?q?fruf=20eines=20MPA=20zu=20einer=20NPE=20f=C3=BChrte?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: https://svn.libreccm.org/ccm/trunk@2169 8810af33-2d31-482b-a856-94f89814c4df --- .../cms/contenttypes/ui/mparticle/SectionEditForm.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ccm-cms-types-mparticle/src/com/arsdigita/cms/contenttypes/ui/mparticle/SectionEditForm.java b/ccm-cms-types-mparticle/src/com/arsdigita/cms/contenttypes/ui/mparticle/SectionEditForm.java index 57ad51b2c..a7ba00044 100755 --- a/ccm-cms-types-mparticle/src/com/arsdigita/cms/contenttypes/ui/mparticle/SectionEditForm.java +++ b/ccm-cms-types-mparticle/src/com/arsdigita/cms/contenttypes/ui/mparticle/SectionEditForm.java @@ -357,11 +357,11 @@ public class SectionEditForm extends Form { PageState state = event.getPageState(); FormData data = event.getFormData(); - ArticleSection section = new ArticleSection(); section.setTitle((String)data.get(TITLE)); section.setName(article.getName() + ": " + (String)data.get(TITLE)); + section.setContentSection(article.getContentSection()); return section; }