Skip to content

Commit

Permalink
Update From.php
Browse files Browse the repository at this point in the history
Add missing option check for overwriting the tl_files table.
  • Loading branch information
stefanheimes authored Jan 31, 2017
1 parent eefc221 commit 5cda6fd
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,13 @@ protected function runSync($arrData)
} else {
$arrSyncSettings["syncCto_SyncDatabase"] = false;
}

// Database - tl_files
if (isset($arrData['tl_files_check'])) {
$arrSyncSettings["syncCto_SyncTlFiles"] = true;
} else {
$arrSyncSettings["syncCto_SyncTlFiles"] = false;
}

// Systemoperation execute.
if (isset($arrData['systemoperations_check']) && isset($arrData['systemoperations_maintenance'])) {
Expand Down

0 comments on commit 5cda6fd

Please sign in to comment.