diff --git a/pandora_server/ChangeLog b/pandora_server/ChangeLog index 480773a3aa..e3779143b8 100644 --- a/pandora_server/ChangeLog +++ b/pandora_server/ChangeLog @@ -1,3 +1,8 @@ +2012-02-14 Vanessa Gil + + * util/pandora_manage.pl: Changed default field separator to + get_event_info and get_module_data. + 2012-02-13 Vanessa Gil * util/pandora_manage.pl: Added get_event_info. diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 24f1455b38..84db7415a1 100755 --- a/pandora_server/util/pandora_manage.pl +++ b/pandora_server/util/pandora_manage.pl @@ -2379,7 +2379,7 @@ sub cli_get_event_info () { my $event_name = pandora_get_event_name($dbh, $id_event); exist_check($event_name,'event',$id_event); - $csv_separator = ';' unless defined($csv_separator); + $csv_separator = '|' unless defined($csv_separator); my $query = "SELECT * FROM tevento where id_evento=".$id_event; @@ -3092,7 +3092,7 @@ sub cli_module_get_data () { print "[ERROR] Interval must be a possitive value\n\n"; } - $csv_separator = ';' unless defined($csv_separator); + $csv_separator = '|' unless defined($csv_separator); my $id_agent_module = get_agent_module_id ($dbh, $module_name, $agent_id);