From 14f3a6e3fa81c1623bf65a0bb2d45bb620046d1b Mon Sep 17 00:00:00 2001 From: tosmers Date: Sun, 15 Feb 2015 15:42:02 +0000 Subject: [PATCH] [UPDATE] In der Klasse ccm-cms/src/com/arsdigita/cms/ui/lifecycle/EditPhaseForm.java die FormProcessException in der Zeile 305 und 350 umgebaut. git-svn-id: https://svn.libreccm.org/ccm/trunk@3183 8810af33-2d31-482b-a856-94f89814c4df --- .../src/com/arsdigita/cms/ui/lifecycle/EditPhaseForm.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ccm-cms/src/com/arsdigita/cms/ui/lifecycle/EditPhaseForm.java b/ccm-cms/src/com/arsdigita/cms/ui/lifecycle/EditPhaseForm.java index 1be425224..c4bb83626 100755 --- a/ccm-cms/src/com/arsdigita/cms/ui/lifecycle/EditPhaseForm.java +++ b/ccm-cms/src/com/arsdigita/cms/ui/lifecycle/EditPhaseForm.java @@ -302,8 +302,8 @@ class EditPhaseForm extends CMSForm { if (phaseDef.getLabel().equalsIgnoreCase(newLabel)) { phaseDefs.close(); - throw new FormProcessException - (lz("cms.ui.lifecycle.phase_name_not_unique")); + throw new FormProcessException(GlobalizationUtil.globalize( + "cms.ui.lifecycle.phase_name_not_unique")); } } } @@ -347,8 +347,8 @@ class EditPhaseForm extends CMSForm { } if ((days + hours + minutes) == 0) { - throw new FormProcessException - (lz("cms.ui.phase.duration_negative")); + throw new FormProcessException(GlobalizationUtil.globalize( + "cms.ui.phase.duration_negative")); } }