The problem is that the GFExcelOutput::getFeed() method will return the first feed it finds, if no feed_id was provided.
Therefor the attachment can locate the wrong feed; which does not have the proper disabled fields; so it just shows everything.
Primary fix is to include the correct feed id in the attachment; coming from the new Addon.
Secondary fix is to only retrieve the feed, if the feed_id was set.
This PR fixes #167
The problem is that the
GFExcelOutput::getFeed()
method will return the first feed it finds, if no feed_id was provided.Therefor the attachment can locate the wrong feed; which does not have the proper disabled fields; so it just shows everything.
Primary fix is to include the correct feed id in the attachment; coming from the new Addon. Secondary fix is to only retrieve the feed, if the feed_id was set.