From 9206dc491e073201dc3fa5ba896f6544188231f2 Mon Sep 17 00:00:00 2001 From: fbsanchez Date: Tue, 27 Jul 2021 11:24:23 +0200 Subject: [PATCH] avoid notice but accept any other alert from PHP --- .../godmode/um_client/lib/UpdateManager/Client.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pandora_console/godmode/um_client/lib/UpdateManager/Client.php b/pandora_console/godmode/um_client/lib/UpdateManager/Client.php index 18ad02720c..254e697425 100644 --- a/pandora_console/godmode/um_client/lib/UpdateManager/Client.php +++ b/pandora_console/godmode/um_client/lib/UpdateManager/Client.php @@ -1342,14 +1342,14 @@ class Client function ($errno, $errstr) { throw new \Exception($errstr, $errno); }, - E_ERROR + (E_ALL ^ E_NOTICE) ); register_shutdown_function( function () { $error = error_get_last(); if (null !== $error - && $error['type'] === E_ERROR + && $error['type'] === (E_ALL ^ E_NOTICE) ) { echo __('Failed to analyze package: %s', $error['message']); } @@ -1434,7 +1434,7 @@ class Client function ($errno, $errstr) { throw new \Exception($errstr, $errno); }, - E_ERROR + (E_ALL ^ E_NOTICE) ); if ($package === null) {