Project

General

Profile

Bug #93433

Updated by Sebastian Michaelsen about 3 years ago

When using the __row|field syntax in placeholders, plaveholders, the related row is not overlaid with its translation. 

 example TCA for a tt_content field: 
 <pre> 
     'tx_myext_teaser_title' => [ 
         'label' => $lll . '.tx_myext_teaser_title', 
         'config' => [ 
             'type' => 'input', 
             'placeholder' => '__row|tx_myext_teaser_page|title', 
         ], 
     ], 
 </pre> 

 For a translated content element, the placeholder should be filled with the value from the translated page record.

Back