From 6570441fd257ba3125b3dff514ca9ead37e99a3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Gonz=C3=A1lez?= Date: Wed, 5 May 2021 12:05:06 +0200 Subject: [PATCH] Fixed issue with type --- pandora_console/include/functions_modules.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandora_console/include/functions_modules.php b/pandora_console/include/functions_modules.php index 6c5325a15b..abbdfcee2c 100755 --- a/pandora_console/include/functions_modules.php +++ b/pandora_console/include/functions_modules.php @@ -580,7 +580,7 @@ function modules_update_agent_module( * @param integer $name Module name id. * @param array $values Extra values for the module. * @param boolean $disableACL Disable the ACL checking, for default false. - * @param array $tags Array with tag's ids or false. + * @param mixed $tags Array with tag's ids or false. * * @return New module id if the module was created. False if not. */ @@ -589,7 +589,7 @@ function modules_create_agent_module( int $name, array $values=[], bool $disableACL=false, - array $tags=false + $tags=false ) { global $config;