2
0
forked from Wavyzz/dolibarr

Merge pull request #2456 from marcosgdf/refactor-1

Refactor 1
This commit is contained in:
Laurent Destailleur
2015-03-22 12:47:05 +01:00
20 changed files with 449 additions and 208 deletions

View File

@@ -3927,9 +3927,7 @@ function dol_htmlcleanlastbr($stringtodecode)
*/
function dol_html_entity_decode($a,$b,$c='UTF-8')
{
// We use @ to avoid warning on PHP4 that does not support entity decoding to UTF8;
$ret=@html_entity_decode($a,$b,$c);
return $ret;
return html_entity_decode($a,$b,$c);
}
/**