From a8acec8353ea0aaa352c6d5f8aad1c3452658bab Mon Sep 17 00:00:00 2001
From: aydreeihn <adriane@enhancesoft.com>
Date: Wed, 2 Jan 2019 09:47:57 -0600
Subject: [PATCH] Issue: Edit Export Column Heading

This commit addresses an issue where we did not save headings for export fields.
We just need to leave the heading in the array rather than filtering it out so that we can save its new heading.
---
 include/class.queue.php | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/include/class.queue.php b/include/class.queue.php
index e434661d2..effe927a8 100644
--- a/include/class.queue.php
+++ b/include/class.queue.php
@@ -1141,9 +1141,6 @@ class CustomQueue extends VerySimpleModel {
             return false;
 
         $order = array_keys($fields);
-        // Filter exportable fields
-        if (!($fields = array_intersect_key($this->getExportableFields(), $fields)))
-            return false;
 
         $new = $fields;
         foreach ($this->exports as $f) {
-- 
GitLab