mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-12 08:58:25 +01:00
fix for bug [ 923070 ] htmlspecialchars()
This commit is contained in:
parent
95ed13e717
commit
2583db40f0
@ -67,7 +67,8 @@
|
||||
|
||||
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