In der Klasse ccm-cms/src/com/arsdigita/cms/ui/authoring/TextAssetBody.java die FormProcessException in der Zeile 357 umgebaut.

git-svn-id: https://svn.libreccm.org/ccm/trunk@3175 8810af33-2d31-482b-a856-94f89814c4df
master
tosmers 2015-02-15 13:25:46 +00:00
parent 80e119f81c
commit 7fd5057c7b
1 changed files with 2 additions and 3 deletions

View File

@ -354,9 +354,8 @@ public abstract class TextAssetBody extends SecurityPropertyEditor
fs.read(file_bytes);
fs.close();
} catch (Exception e) {
throw new FormProcessException((String) GlobalizationUtil.
globalize("cms.ui.authoring.unable_to_load_file").
localize() + e.getMessage());
throw new FormProcessException(GlobalizationUtil.
globalize("cms.ui.authoring.unable_to_load_file"));
}
return file_bytes;
}