mirror of
https://github.com/silverstripe/silverstripe-dms
synced 2024-10-22 14:05:56 +02:00
change folder extraction
This commit is contained in:
parent
f41375e608
commit
9b31a7071f
@ -22,6 +22,6 @@ if ($config->get('DMSDocument_versions', 'enable_versions')) {
|
|||||||
|
|
||||||
// add dmsassets folder to file system sync exclusion
|
// add dmsassets folder to file system sync exclusion
|
||||||
if (strpos($config->get('DMS', 'folder_name'), 'assets/') === 0) {
|
if (strpos($config->get('DMS', 'folder_name'), 'assets/') === 0) {
|
||||||
$folderName = str_replace('assets/', '', $config->get('DMS', 'folder_name'));
|
$folderName = substr($config->get('DMS', 'folder_name'), 7);
|
||||||
$config->update('Filesystem', 'sync_blacklisted_patterns', array("/^" . $folderName . "$/i",));
|
$config->update('Filesystem', 'sync_blacklisted_patterns', array("/^" . $folderName . "$/i",));
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user