We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a185291 commit 72ee6d1Copy full SHA for 72ee6d1
src/Controller/DatabasePopupController.php
@@ -191,8 +191,9 @@ public function showNormalDatabase()
191
}
192
193
// If no table is found skip the view
194
- if (count($this->arrSyncSettings['syncCto_CompareTables']['recommended']) == 0
195
- && count($this->arrSyncSettings['syncCto_CompareTables']['nonRecommended']) == 0
+ if (
+ count($this->arrSyncSettings['syncCto_CompareTables']['recommended'] ?? []) == 0
196
+ && count($this->arrSyncSettings['syncCto_CompareTables']['nonRecommended'] ?? []) == 0
197
) {
198
unset($this->arrSyncSettings['syncCto_CompareTables']);
199
$this->arrSyncSettings['syncCto_SyncDeleteTables'] = array();
0 commit comments