In der Klasse ccm-docmgr/src/com/arsdigita/cms/docmgr/ui/FolderContentsTableForm.java die FormProcessException in der Zeile 184 den key-Namen verbessert und in der Property angepasst.

git-svn-id: https://svn.libreccm.org/ccm/trunk@3198 8810af33-2d31-482b-a856-94f89814c4df
master
tosmers 2015-02-15 17:32:30 +00:00
parent 918229369c
commit 6fe8bb16a5
3 changed files with 3 additions and 3 deletions

View File

@ -92,5 +92,5 @@ ui.portlet.action.new.doclink=New DocLink
ui.intended_audience_cannot_be_null=Intended Audience cannot be null
ui.error.sending_document=An error occurred while trying to send document
ui.invalid_term=Invalid term
ui.folder.not_empty=Folders must be empty before they can be deleted
ui.folder.deletion_while_not_empty=Folders must be empty before they can be deleted
ui.error.unexpected=An unexpected error occurred

View File

@ -92,5 +92,5 @@ ui.portlet.action.new.doclink=New DocLink
ui.intended_audience_cannot_be_null=Intended Audience cannot be null
ui.error.sending_document=An error occurred while trying to send document
ui.invalid_term=Invalid term
ui.folder.not_empty=Folders must be empty before they can be deleted
ui.folder.deletion_while_not_empty=Folders must be empty before they can be deleted
ui.error.unexpected=An unexpected error occurred

View File

@ -182,7 +182,7 @@ class FolderContentsTableForm extends Form
if (resource.isFolder()) {
if (! ((Folder) resource).isEmpty()) {
throw new FormProcessException(GlobalizationUtil.globalize(
"ui.folder.not_empty"));
"ui.folder.deletion_while_not_empty"));
}
}
} catch (PersistenceException exc) {