From 47155513ccfc9883fdcd5d5d8a267d6c6ab7f599 Mon Sep 17 00:00:00 2001 From: Jonathan Date: Fri, 4 Aug 2023 10:17:59 +0200 Subject: [PATCH] #11710 fix error redirect url and pagination --- pandora_console/godmode/alerts/alert_commands.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pandora_console/godmode/alerts/alert_commands.php b/pandora_console/godmode/alerts/alert_commands.php index 5efd9f0e6a..75a80d8d57 100644 --- a/pandora_console/godmode/alerts/alert_commands.php +++ b/pandora_console/godmode/alerts/alert_commands.php @@ -725,17 +725,17 @@ if ($copy_command) { $is_management_allowed = is_management_allowed(); if ($is_management_allowed === false) { if (is_metaconsole() === false) { - $url = ''.__('metaconsole').''; } else { - $url = __('any node'); + $url_redirect = __('any node'); } ui_print_warning_message( __( 'This node is configured with centralized mode. All alert commands information is read only. Go to %s to manage it.', - $url + $url_redirect ) ); }