mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-03-04 10:01:32 +01:00
fix PHP 8.0 TypeError: strpos(): Argument #1 ($haystack) must be of type string, array given
This commit is contained in:
parent
dfdd3b918b
commit
aca63345ca
@ -403,8 +403,8 @@ class History
|
|||||||
*/
|
*/
|
||||||
public static function needs_diff($name, $value)
|
public static function needs_diff($name, $value)
|
||||||
{
|
{
|
||||||
// No diff on encrypted content
|
// No diff on arrays or encrypted content
|
||||||
if(strpos($value, static::BEGIN_PGP) == 0 && strpos($value, static::END_PGP) !== FALSE)
|
if (is_array($value) || strpos($value, static::BEGIN_PGP) == 0 && strpos($value, static::END_PGP) !== FALSE)
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user