mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-26 07:49:28 +01:00
fix for bug [ 923070 ] htmlspecialchars()
This commit is contained in:
parent
95ed13e717
commit
2583db40f0
@ -67,7 +67,8 @@
|
|||||||
|
|
||||||
function htmlspecialchars($str)
|
function htmlspecialchars($str)
|
||||||
{
|
{
|
||||||
return htmlspecialchars($str,ENT_COMPAT,$this->charset);
|
// add @ by lkneschke to supress warning about unknown charset
|
||||||
|
return @htmlspecialchars($str,ENT_COMPAT,$this->charset);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
|
Loading…
Reference in New Issue
Block a user