ecrire/xml/sax.php 1 location
|
@@ 27-29 (lines=3) @@
|
| 24 |
|
* @return string |
| 25 |
|
*/ |
| 26 |
|
function xml_entites_html($texte) { |
| 27 |
|
if (!is_string($texte) or !$texte |
| 28 |
|
or strpbrk($texte, "&\"'<>") == false |
| 29 |
|
) { |
| 30 |
|
return $texte; |
| 31 |
|
} |
| 32 |
|
|
ecrire/inc/filtres.php 1 location
|
@@ 754-756 (lines=3) @@
|
| 751 |
|
* @return mixed|string |
| 752 |
|
*/ |
| 753 |
|
function entites_html($texte, $tout = false, $quote = true) { |
| 754 |
|
if (!is_string($texte) or !$texte |
| 755 |
|
or strpbrk($texte, "&\"'<>") == false |
| 756 |
|
) { |
| 757 |
|
return $texte; |
| 758 |
|
} |
| 759 |
|
include_spip('inc/texte'); |