Too mush mistypes in code!!! This is only I found by the way:
administration/templates/base/promo.html -> <laber></label> (r=l) 2 times,
administration/basic_settings.php ->
$bPromoImage = getParam('enable_flash_promo') == 'on';
$sResult = $GLOBALS['oAdmTemplate']->parseHtmlByName('promo.html', array(
'checked_image' => $bPromoImage ? 'checked="checked"' : '',
'checked_text' => !$bPromoImage ? 'checked="checked"' : '', ------------------------- must be ----- !$bPromoText?
'style_image' => $bPromoImage ? '' : 'display:none;',
'style_text' => !$bPromoImage? '' : 'display:none;', ---------------------------- must be ---- !$bPromoText?
'content_image' => $oFormImage->getCode(),
'content_text' => $oFormText->getCode()
));
... ect - to be continued