Publisher does not support the Fluid field type. Please do not contact asking when support will be available.

If you purchased an add-on from expressionengine.com, be sure to visit boldminded.com/claim to add the license to your account here on boldminded.com.

Ticket: Error with “Ignored fields”

Status Resolved
Add-on / Version Publisher 2.7.6
Severity
EE Version 3.5.10

2op

Mar 13, 2018

Description: I found out that there’s an error in the code of FieldHandler in line 167: the name of the method is displayPublishField instead of display_publish_field. This causes ignored fields to be treated as non-ignored fields.

I could not verify if the issue was resolved in current version because I’m unable to download it. I bought the license for Publisher 2.x, wasn’t I supposed to be able to download any version of Publisher 2.x???

 

 

#1

BoldMinded (Brian)

You can download any version released within a year after your original purchase date. Looks like you bought it on 2/23/2017. You’ll need to renew to get the latest build. Once you do that and confirm the issue you’re seeing is still valid, please provide more details. The method names are camelized on line 130, so it shouldn’t be an error. If you’re experiencing an issue its probably somewhere else.

#2

2op

I renewed the license and downloaded the latest version. The issue is still there. In line 174 it’s written

if (
            ($method == 'display_publish_field' && $this->channelFieldService->isIgnored($fieldId)) ||
            !$this->channelFieldService->isCustomField($fieldName) ||
            $this->entryService->isIgnored($entryId)
        )

where it should be

if (
            ($method == 'displayPublishField' && $this->channelFieldService->isIgnored($fieldId)) ||
            !$this->channelFieldService->isCustomField($fieldName) ||
            $this->entryService->isIgnored($entryId)
        )
#3

BoldMinded (Brian)

I see what you’re saying now. Thanks for the example. I’ll get this fixed in the next release which will go out today.

Login to reply