From 30fe3d588bba0695f5de4237856a1e1e6efbae11 Mon Sep 17 00:00:00 2001 From: nathangray Date: Thu, 21 Mar 2019 14:52:56 -0600 Subject: [PATCH] Scrutinizer suggestions --- admin/inc/class.admin_cmd.inc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/admin/inc/class.admin_cmd.inc.php b/admin/inc/class.admin_cmd.inc.php index 78ab47b04b..d727a12346 100644 --- a/admin/inc/class.admin_cmd.inc.php +++ b/admin/inc/class.admin_cmd.inc.php @@ -39,7 +39,7 @@ use EGroupware\Api\Acl; * @property string|NULL $comment comment, eg. reasoning why change was requested * @property-read int|NULL $errno Numerical error-code or NULL on success * @property-read string|NULL $error Error message or NULL on success - * @property-read string|NULL $result Result message indicating what happened, or NULL on failure + * @property array|string|NULL $result Result message indicating what happened, or NULL on failure * @property-read int $id $id of command/row in egw_admin_queue table * @property-read string $uid uuid of command (necessary if command is send to a remote system to execute) * @property int|NULL $remote_id id of remote system, if command is not meant to run on local system @@ -1442,7 +1442,7 @@ abstract class admin_cmd { if($this->result) { - return $this->result; + return is_array($this->result) ? implode("\n", $this->result) : $this->result; } return lang("Command was run %1 on %2", static::$stati[ $this->status ],