From 0d2f905e8a16f21d914d19ff2be9757154c0c324 Mon Sep 17 00:00:00 2001
From: Arturo Gonzalez Diaz <arturo.gonzalez@artica.es>
Date: Wed, 26 Aug 2015 13:32:12 +0200
Subject: [PATCH] Fixed problem whit simple value.

---
 pandora_console/include/functions_visual_map.php | 8 +-------
 1 file changed, 1 insertion(+), 7 deletions(-)

diff --git a/pandora_console/include/functions_visual_map.php b/pandora_console/include/functions_visual_map.php
index da732cc26a..5189f2aead 100644
--- a/pandora_console/include/functions_visual_map.php
+++ b/pandora_console/include/functions_visual_map.php
@@ -59,13 +59,7 @@ function visual_map_print_item($layoutData) {
 	$left = $layoutData['pos_x'];
 	$id = $layoutData['id'];
 	$color = $layoutData['label_color'];
-	//If it is simple value, label must be empty because if not, module value set the plane text '(_VALUE_)'
-	if ($layoutData['type'] == SIMPLE_VALUE){
-		$label = '';
-	}
-	else{
-		$label = io_safe_output($layoutData['label']);
-	}
+	$label = io_safe_output($layoutData['label']);
 	$id_module = $layoutData['id_agente_modulo'];
 	$type = $layoutData['type'];
 	$period = $layoutData['period'];