From e778d2d0242f3acc09ae4c4e1e65f52faad1e67c Mon Sep 17 00:00:00 2001 From: tosmers Date: Sun, 15 Feb 2015 15:33:41 +0000 Subject: [PATCH] [UPDATE] In der Klasse ccm-cms/src/com/arsdigita/cms/ui/lifecycle/AddPhaseForm.java die FormProcessException in der Zeile 309 umgebaut. git-svn-id: https://svn.libreccm.org/ccm/trunk@3181 8810af33-2d31-482b-a856-94f89814c4df --- ccm-cms/src/com/arsdigita/cms/ui/lifecycle/AddPhaseForm.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/ccm-cms/src/com/arsdigita/cms/ui/lifecycle/AddPhaseForm.java b/ccm-cms/src/com/arsdigita/cms/ui/lifecycle/AddPhaseForm.java index 9c7704316..949edbbc4 100755 --- a/ccm-cms/src/com/arsdigita/cms/ui/lifecycle/AddPhaseForm.java +++ b/ccm-cms/src/com/arsdigita/cms/ui/lifecycle/AddPhaseForm.java @@ -306,9 +306,8 @@ class AddPhaseForm extends CMSForm { if (phaseDef.getLabel().equalsIgnoreCase(label)) { phaseDefs.close(); - throw new FormProcessException - ("A phase with that name already exists for this lifecycle: " - + label); + throw new FormProcessException(GlobalizationUtil.globalize( + "cms.ui.lifecycle.name_not_unique")); } } }