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
master
tosmers 2015-02-15 15:42:02 +00:00
parent c64a6947d3
commit 14f3a6e3fa
1 changed files with 4 additions and 4 deletions

View File

@ -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"));
}
}