mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-09-13 05:58:03 -04:00
* Fix all broken links in the entire repository * Update docs/CHANGELOG-old2.md Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr> * Update config.default.php Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr> * Update README.md Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr> * Update docs/i18n/freshrss.fr.po Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr> * Update docs/i18n/templates/freshrss.pot Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr> * Update README.md Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr> * Update docs/fr/users/01_Installation.md Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr> * Update docs/fr/users/01_Installation.md Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr> * Update docs/en/internationalization.md Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr> * Manual fixes, preferences * Prefer canonical when known, prefer shorter, prefer roots, prefer URLs with content negotation (e.g. language preference) * Keep 302, 307 unchanged * Use only `.example`, `example.net` or similarly reserved domains for URL examples * Fix language negotiation for developer.mozilla.org * Restore a Stackoverflow 302 * Fix some example.com --------- Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
34 lines
793 B
PHP
34 lines
793 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* MINZ - Copyright 2011 Marien Fressinaud
|
|
* Sous licence AGPL3 <https://www.gnu.org/licenses/>
|
|
*/
|
|
|
|
/**
|
|
* The Minz_Helper class contains some misc. help functions
|
|
*/
|
|
final class Minz_Helper {
|
|
|
|
/**
|
|
* Wrapper for htmlspecialchars.
|
|
* Force UTF-8 value and can be used on array too.
|
|
*
|
|
* @phpstan-template T of mixed
|
|
* @phpstan-param T $var
|
|
* @phpstan-return T
|
|
*/
|
|
public static function htmlspecialchars_utf8(mixed $var, int $flags = ENT_COMPAT): mixed {
|
|
if (is_array($var)) {
|
|
// @phpstan-ignore return.type
|
|
return array_map(fn($v) => self::htmlspecialchars_utf8($v, $flags), $var);
|
|
} elseif (is_string($var)) {
|
|
// @phpstan-ignore return.type
|
|
return htmlspecialchars($var, $flags, 'UTF-8');
|
|
} else {
|
|
return $var;
|
|
}
|
|
}
|
|
}
|