From c509d23a81ac2b6cf5c3cd03cc7e5dfb0a9af665 Mon Sep 17 00:00:00 2001 From: Enrique Camargo Date: Fri, 10 Feb 2017 16:56:55 +0100 Subject: [PATCH] Merge branch '53-no-ejecuta-custom-responses' into 'develop' Show unreachable host reponse when ping from custom responses - #53 See merge request !148 --- pandora_console/include/javascript/pandora_events.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/javascript/pandora_events.js b/pandora_console/include/javascript/pandora_events.js index 1b01f1f501..7b78c0a637 100644 --- a/pandora_console/include/javascript/pandora_events.js +++ b/pandora_console/include/javascript/pandora_events.js @@ -359,7 +359,7 @@ function perform_response(target) { dataType: 'html', success: function (data) { if (data == '') { - $('#response_out').html('No output'); + $('#response_out').html('Unreachable host'); } else { var out = data.replace(/[\n|\r]/g, "
");