diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index efbd7c7ad8..a6005a28a6 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2014-07-22 Miguel de Dios + + * godmode/agentes/agent_manager.php: fixed to show the QR code image + in the creation of a new agent. + 2014-07-21 Miguel de Dios * pandoradb.postgreSQL.sql: fixed the SQL. diff --git a/pandora_console/godmode/agentes/agent_manager.php b/pandora_console/godmode/agentes/agent_manager.php index 6b73c9a6a0..3bc1912588 100644 --- a/pandora_console/godmode/agentes/agent_manager.php +++ b/pandora_console/godmode/agentes/agent_manager.php @@ -159,7 +159,8 @@ if ($id_agente) { $table->data[0][1] .= " " . __("ID") . "  $id_agente  "; $table->data[0][1] .= '  '; - $table->data[0][1] .= html_print_image ("images/zoom.png", true, array ("border" => 0, "title" => __('Agent detail'))); + $table->data[0][1] .= html_print_image ("images/zoom.png", + true, array ("border" => 0, "title" => __('Agent detail'))); $table->data[0][1] .= ''; } @@ -215,9 +216,14 @@ if ($id_agente) { rowspan[1][2] = 7; -$table->data[1][2] = - ""; +if ($id_agente) { + $table->data[1][2] = + ""; +} +else { + $table->data[1][2] = __("Only it is show when
the agent is saved."); +} $groups = users_get_groups ($config["id_user"], "AR",false); $agents = agents_get_group_agents (array_keys ($groups));