From 4f56f2efb397bfdd418351b89ace48639983d6c2 Mon Sep 17 00:00:00 2001 From: johnnyq Date: Fri, 13 May 2022 15:17:23 -0400 Subject: [PATCH] Added more Descriptive Column titles and additonal cell spacing to contact templates --- post.php | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/post.php b/post.php index 5ae44b4f..cefe8952 100644 --- a/post.php +++ b/post.php @@ -4503,7 +4503,16 @@ if(isset($_GET['download_client_contacts_csv_template'])){ $f = fopen('php://memory', 'w'); //set column headers - $fields = array('Name', 'Title', 'Department', 'Email', 'Phone', 'Ext', 'Mobile', 'Location'); + $fields = array( + 'Full Name ', + 'Job Title ', + 'Department Name ', + 'Email Address ', + 'Office Phone ', + 'Office Extension ', + 'Mobile Phone ', + 'Office Location ' + ); fputcsv($f, $fields, $delimiter); //move back to beginning of file