From 38d74367dc462c8da8568766ff80d63c4b3ada55 Mon Sep 17 00:00:00 2001 From: jensp Date: Wed, 10 Oct 2012 08:22:05 +0000 Subject: [PATCH] Create Wizard schaltet jetzt vom den Basiseinschaften wieder weiter (Ticket #1400). git-svn-id: https://svn.libreccm.org/ccm/trunk@1878 8810af33-2d31-482b-a856-94f89814c4df --- .../com/arsdigita/cms/contenttypes/ui/ArticlePropertyForm.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ccm-cms-types-article/src/com/arsdigita/cms/contenttypes/ui/ArticlePropertyForm.java b/ccm-cms-types-article/src/com/arsdigita/cms/contenttypes/ui/ArticlePropertyForm.java index d5714583a..b02920635 100755 --- a/ccm-cms-types-article/src/com/arsdigita/cms/contenttypes/ui/ArticlePropertyForm.java +++ b/ccm-cms-types-article/src/com/arsdigita/cms/contenttypes/ui/ArticlePropertyForm.java @@ -66,6 +66,7 @@ public class ArticlePropertyForm extends GenericArticlePropertyForm */ public ArticlePropertyForm(ItemSelectionModel itemModel, ArticlePropertiesStep step) { super(itemModel, step); + m_step = step; addSubmissionListener(this); } @@ -131,7 +132,7 @@ public class ArticlePropertyForm extends GenericArticlePropertyForm article.setLead((String) data.get(LEAD)); article.save(); - } + } if (m_step != null) { m_step.maybeForwardToNextStep(fse.getPageState()); }