mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
Removed check for empty configuration section for FTP as it disables the server. Only disable the
server if the configuration section is not present. (AR-397) git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2279 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -1096,7 +1096,7 @@ public class ServerConfiguration
|
|||||||
{
|
{
|
||||||
// If the configuration section is not valid then FTP is disabled
|
// If the configuration section is not valid then FTP is disabled
|
||||||
|
|
||||||
if ( config == null || config.getConfigElements().isEmpty())
|
if ( config == null)
|
||||||
{
|
{
|
||||||
setFTPServerEnabled(false);
|
setFTPServerEnabled(false);
|
||||||
return;
|
return;
|
||||||
|
Reference in New Issue
Block a user