You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
420 B
17 lines
420 B
<?php |
|
|
|
if (!defined('_ECRIRE_INC_VERSION')) { |
|
return; |
|
} |
|
|
|
/** |
|
* Autoriser les tag <b>, <i>, <em>, <sc> et <br /> |
|
* dans le nom/signature d'un auteur. |
|
* |
|
* Par defaut, <multi> est toujours autorise. |
|
* Cf : https://www.spip.net/fr_article5666.html |
|
* Cf : https://core.spip.net/projects/spip/repository/revisions/21016 a 21018 |
|
*/ |
|
if (!defined('_TAGS_NOM_AUTEUR')) { |
|
define('_TAGS_NOM_AUTEUR', 'b, i, em, sc, br'); |
|
}
|
|
|