[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-94f89814c4dfmaster
parent
c64a6947d3
commit
14f3a6e3fa
|
|
@ -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"));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue