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
master
jensp 2012-10-10 08:22:05 +00:00
parent 29a4101b03
commit 38d74367dc
1 changed files with 2 additions and 1 deletions

View File

@ -66,6 +66,7 @@ public class ArticlePropertyForm extends GenericArticlePropertyForm
*/ */
public ArticlePropertyForm(ItemSelectionModel itemModel, ArticlePropertiesStep step) { public ArticlePropertyForm(ItemSelectionModel itemModel, ArticlePropertiesStep step) {
super(itemModel, step); super(itemModel, step);
m_step = step;
addSubmissionListener(this); addSubmissionListener(this);
} }
@ -131,7 +132,7 @@ public class ArticlePropertyForm extends GenericArticlePropertyForm
article.setLead((String) data.get(LEAD)); article.setLead((String) data.get(LEAD));
article.save(); article.save();
} }
if (m_step != null) { if (m_step != null) {
m_step.maybeForwardToNextStep(fse.getPageState()); m_step.maybeForwardToNextStep(fse.getPageState());
} }