menatwork / syncCto

Contao Extension :: Synchronize multiple contao installations with each other
https://packagist.org/packages/menatwork/synccto
25 stars 14 forks source link

localconfig Werte werden beim Sync umgeschrieben #314

Open frontendschlampe opened 2 years ago

frontendschlampe commented 2 years ago

also irgendwie ist das eigenartig: wenn ich die localconfig-Einträge mit syncCto synchronisiere, dann werden die Werte für true umgeschrieben zu 1, obwohl in beiden Systemen bei beiden localconfig vorher true stand.

$GLOBALS['TL_CONFIG']['minifyMarkup'] = true; #vorher
$GLOBALS['TL_CONFIG']['minifyMarkup'] = 1;    #danach
$GLOBALS['TL_CONFIG']['gzipScripts'] = true; #vorher
$GLOBALS['TL_CONFIG']['gzipScripts'] = 1;    #danach