Project

General

Profile

Bug #98273

Updated by Andreas Kienast about 2 years ago

If @titleText@ is used in the RTE configuration, but not for all items in @classesAnchor@, a PHP 8 warning arises: 

 <pre> 
 PHP Warning: Undefined array key "titleText" in /var/www/html/typo3_src/typo3/sysext/rte_ckeditor/Classes/Controller/BrowseLinksController.php line 164 
 </pre> 

 Example config 

 <pre><code class="yaml"> 
 classesAnchor: 
     page: 
         class: 'link-page' 
         type: 'page' 
         titleText: 'This is a linked page' 
     folder: 
         class: 'link-folder' 
         type: 'folder' 
     file: 
         class: 'link-file' 
         type: 'file' 
     external: 
         class: 'link-external' 
         type: 'url' 
         titleText: 'lul' 
     mail: 
         class: 'link-mail' 
         type: 'mail' 
 </code></pre> 

Back