]> git.mxchange.org Git - friendica.git/commitdiff
Add information about BBCode availability in event fields
authorHypolite Petovan <hypolite@mrpetovan.com>
Sat, 3 Dec 2022 00:40:39 +0000 (19:40 -0500)
committerHypolite Petovan <hypolite@mrpetovan.com>
Sun, 4 Dec 2022 11:37:37 +0000 (06:37 -0500)
src/Module/Calendar/Event/Form.php

index 2e8dec7faaf3bddba6718f30f9bd37a0ac99e335..74877f0afdeb3115aed1c1858ecfd50c35b23166 100644 (file)
@@ -234,13 +234,13 @@ class Form extends BaseModule
                                'start_text'
                        ),
 
-                       '$d_text'      => $this->t('Description:'),
+                       '$t_text'      => $this->t('Title (BBCode not allowed)') . ' <span class="required" title="' . $this->t('Required') . '">*</span>',
+                       '$t_orig'      => $t_orig,
+                       '$d_text'      => $this->t('Description (BBCode allowed)'),
                        '$d_orig'      => $d_orig,
-                       '$l_text'      => $this->t('Location:'),
+                       '$l_text'      => $this->t('Location (BBCode not allowed)'),
                        '$l_orig'      => $l_orig,
-                       '$t_text'      => $this->t('Title:') . ' <span class="required" title="' . $this->t('Required') . '">*</span>',
-                       '$t_orig'      => $t_orig,
-                       '$summary'     => ['summary', $this->t('Title:'), $t_orig, '', '*'],
+                       '$summary'     => ['summary', $this->t('Title (BBCode not allowed)'), $t_orig, '', '*'],
                        '$sh_text'     => $this->t('Share this event'),
                        '$share'       => ['share', $this->t('Share this event'), $share_checked, '', $share_disabled],
                        '$sh_checked'  => $share_checked,