do-while / contao-BackupDB

Datenbank-Backup für Contao ab 4.4
GNU Lesser General Public License v3.0
10 stars 5 forks source link

count() mit null als Argument #31

Closed fiedsch closed 2 years ago

fiedsch commented 2 years ago

Zu https://community.contao.org/de/showthread.php?82805-BackupDB-Version-1-5-1-funktioniert-nicht-in-Contao-4-13-1

Die Zeile https://github.com/do-while/contao-BackupDB/blob/5e0c1df9d42726e89ee9333fcfa360f33c2d241e/src/Resources/contao/classes/BackupDbCommon.php#L221 muss wahrscheinlich

  $result .= "CREATE TABLE `" . $table . "` (\n  " . implode(",\n  ", $tablespec['TABLE_FIELDS']) . (count($tablespec['TABLE_CREATE_DEFINITIONS'] ?? []) ? ',' : '') . "\n";

lauten, damit es kein Problem gibt, wenn $tablespec['TABLE_CREATE_DEFINITIONS'] nicht gesetzt ist.

do-while commented 2 years ago

Im Warmup werden einige Konstanten oder Texte nicht geladen. Danke für Hinweis und Lösung!