diff --git a/pandora_console/include/styles/task_list.css b/pandora_console/include/styles/task_list.css index 4cb248460f..01f7a82549 100644 --- a/pandora_console/include/styles/task_list.css +++ b/pandora_console/include/styles/task_list.css @@ -105,3 +105,8 @@ span.link { span.link.review { font-weight: bold; } + +#review { + padding-top: 2em; + padding-left: 6.7em; +} diff --git a/pandora_server/lib/PandoraFMS/Core.pm b/pandora_server/lib/PandoraFMS/Core.pm index c781d6b9fb..96777fe158 100644 --- a/pandora_server/lib/PandoraFMS/Core.pm +++ b/pandora_server/lib/PandoraFMS/Core.pm @@ -6275,6 +6275,10 @@ sub notification_get_users { ', safe_input($source) ); + + @results = map { $_->{'id_user'} } @results; + + return @results; } ########################################################################## @@ -6296,6 +6300,10 @@ sub notification_get_groups { ', safe_input($source) ); + + @results = map { $_->{'id_group'} } @results; + + return @results; }