mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-01-22 04:08:13 -05:00
* Remove magicQuotesOff (#2697) Magic quotes have been deprecated since PHP 5.4 and as of PHP 7.4 `get_magic_quotes_gpc()` displays a warning. * Remove unused Minz_Helper::stripslashes_r `Minz_Helper::stripslashes_r` is no longer used. It's last user was `Minz_Request::magicQuotesOff`
23 lines
521 B
PHP
23 lines
521 B
PHP
<?php
|
|
/**
|
|
* MINZ - Copyright 2011 Marien Fressinaud
|
|
* Sous licence AGPL3 <http://www.gnu.org/licenses/>
|
|
*/
|
|
|
|
/**
|
|
* La classe Helper représente une aide pour des tâches récurrentes
|
|
*/
|
|
class Minz_Helper {
|
|
|
|
/**
|
|
* Wrapper for htmlspecialchars.
|
|
* Force UTf-8 value and can be used on array too.
|
|
*/
|
|
public static function htmlspecialchars_utf8($var) {
|
|
if (is_array($var)) {
|
|
return array_map(array('Minz_Helper', 'htmlspecialchars_utf8'), $var);
|
|
}
|
|
return htmlspecialchars($var, ENT_COMPAT, 'UTF-8');
|
|
}
|
|
}
|