2
0
forked from Wavyzz/dolibarr

Clean: Remove fields for social networks (merged into "socialnetworks")

This commit is contained in:
Laurent Destailleur
2021-10-27 16:39:34 +02:00
parent 4bde20dd8d
commit 97d97af932
11 changed files with 96 additions and 52 deletions

View File

@@ -6677,7 +6677,7 @@ function dol_html_entity_decode($a, $b, $c = 'UTF-8', $keepsomeentities = 0)
* @param bool $double_encode When double_encode is turned off, PHP will not encode existing html entities
* @return string $ret Encoded string
*/
function dol_htmlentities($string, $flags = null, $encoding = 'UTF-8', $double_encode = false)
function dol_htmlentities($string, $flags = ENT_QUOTES|ENT_SUBSTITUTE, $encoding = 'UTF-8', $double_encode = false)
{
return htmlentities($string, $flags, $encoding, $double_encode);
}