GravityKit / GravityExport-Lite

GravityExport Lite. Export all Gravity Forms entries to Excel (.xlsx) via a secret (shareable) url.
https://gfexcel.com
GNU General Public License v2.0
12 stars 8 forks source link

Fixed custom label retrieval on PHP 8 #129

Closed doekenorg closed 2 years ago

doekenorg commented 2 years ago

The behavior of array_key_exists changed in PHP 8, and it no longer accepts an array-like object; but only arrays. This causes an issue on the SeparableField which gets a custom sublabel through this method on the field object.

This PR fixes the problem by using the \ArrayAccess ability in combination with the Null Coalescing Operator (??).