Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions inc/taskview.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -594,15 +594,15 @@ public function csvExport($params = [])
}

// cols titles
echo "Task_name" . SEP;
echo "Job_name" . SEP;
echo "Method" . SEP;
echo "Target" . SEP;
echo "Agent" . SEP;
echo "Computer name" . SEP;
echo "Date" . SEP;
echo "Status" . SEP;
echo "Last Message" . NL;
echo __('Task name', 'glpiinventory') . SEP;
echo __('Job name', 'glpiinventory') . SEP;
echo __('Method', 'glpiinventory') . SEP;
echo __('Target', 'glpiinventory') . SEP;
echo __('Agent', 'glpiinventory') . SEP;
echo __('Computer name', 'glpiinventory') . SEP;
echo __('Date', 'glpiinventory') . SEP;
echo __('Status', 'glpiinventory') . SEP;
echo __('Last message', 'glpiinventory') . NL;

$agent_obj = new Agent();
$computer = new Computer();
Expand Down
Loading