Renamed contact display field on client assets to Assigned To to match export and import assets

This commit is contained in:
johnnyq
2022-02-04 17:38:53 -05:00
parent 75117c2f2e
commit 6e9f2534d4
2 changed files with 2 additions and 2 deletions

View File

@@ -4632,7 +4632,7 @@ if(isset($_GET['download_client_assets_csv_template'])){
$f = fopen('php://memory', 'w');
//set column headers
$fields = array('Name', 'Type', 'Make', 'Model', 'Serial', 'OS', 'Contact', 'Location');
$fields = array('Name', 'Type', 'Make', 'Model', 'Serial', 'OS', 'Assigned To', 'Location');
fputcsv($f, $fields, $delimiter);
//move back to beginning of file