mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 07:53:39 +01:00
fix PHP 8.0 TypeError: array_search(): Argument #2 ($haystack) must be of type array, bool given
This commit is contained in:
parent
2406fe0fad
commit
7d49599943
@ -877,7 +877,7 @@ class mail_zpush implements activesync_plugin_write, activesync_plugin_sendmail,
|
|||||||
$bodypreference = $contentparameters->GetBodyPreference(); /* fmbiete's contribution r1528, ZP-320 */
|
$bodypreference = $contentparameters->GetBodyPreference(); /* fmbiete's contribution r1528, ZP-320 */
|
||||||
|
|
||||||
// fix for z-push bug returning additional bodypreference type 4, even if only 1 is requested and mimessupport = 0
|
// fix for z-push bug returning additional bodypreference type 4, even if only 1 is requested and mimessupport = 0
|
||||||
if (!$mimesupport && ($key = array_search('4', $bodypreference))) unset($bodypreference[$key]);
|
if (!$mimesupport && $bodypreference !== false && ($key = array_search('4', $bodypreference))) unset($bodypreference[$key]);
|
||||||
|
|
||||||
//$this->debugLevel=4;
|
//$this->debugLevel=4;
|
||||||
if (!isset($this->mail)) $this->mail = Mail::getInstance(false,self::$profileID,true,false,true);
|
if (!isset($this->mail)) $this->mail = Mail::getInstance(false,self::$profileID,true,false,true);
|
||||||
|
Loading…
Reference in New Issue
Block a user