In D7, class backup_migrate_files_destination_archivesource gets the file_public_path by using variable_get(). When backup_migrate was ported, this was adapted by using config_get('backup_migrate.settings','file_public_path'), which, of course, is wrong. In BAckdrop the counterpart of the variable file_public_path is obtained by doing config_get('system.core', 'file_public_path'). This should be changed.
In D7, class
backup_migrate_files_destination_archivesource
gets thefile_public_path
by usingvariable_get()
. Whenbackup_migrate
was ported, this was adapted by usingconfig_get('backup_migrate.settings','file_public_path')
, which, of course, is wrong. In BAckdrop the counterpart of the variablefile_public_path
is obtained by doingconfig_get('system.core', 'file_public_path')
. This should be changed.