mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Merged V3.1 to HEAD
13129: Merged V2.1-A to V3.1 8598: Fix for ADB-41 (ACT 1657) 13139: Merged V2.1-A to V3.1 8674: First phase of using group display name in UI 13148: Merged V2.1-A to V3.1 8679: Completion of using group display name in UI 13149: Merged V2.1-A to V3.1 8690: Fixed ADB-33 again 13150: Merged V2.1-A to V3.1 8775: Fix ACT-2399 13152: Merged V2.1-A to V3.1 8941: ACT-2631: added max users message to send email action page git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@13565 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -67,6 +67,7 @@ public class ClientElementReader implements ConfigElementReader
|
||||
public static final String ELEMENT_BREADCRUMB_MODE = "breadcrumb-mode";
|
||||
public static final String ELEMENT_CIFSURLSUFFIX = "cifs-url-suffix";
|
||||
public static final String ELEMENT_LANGUAGESELECT = "language-select";
|
||||
public static final String ELEMENT_ZEROBYTEFILEUPLOADS = "zero-byte-file-uploads";
|
||||
|
||||
|
||||
/**
|
||||
@@ -283,6 +284,13 @@ public class ClientElementReader implements ConfigElementReader
|
||||
{
|
||||
configElement.setLanguageSelect(Boolean.parseBoolean(langSelect.getTextTrim()));
|
||||
}
|
||||
|
||||
// get the zero byte file upload mode
|
||||
Element zeroByteFiles = element.element(ELEMENT_ZEROBYTEFILEUPLOADS);
|
||||
if (zeroByteFiles != null)
|
||||
{
|
||||
configElement.setZeroByteFileUploads(Boolean.parseBoolean(zeroByteFiles.getTextTrim()));
|
||||
}
|
||||
}
|
||||
|
||||
return configElement;
|
||||
|
Reference in New Issue
Block a user