verbb / field-manager

Field Manager is a Craft CMS plugin to make it easy to manage your fields and field groups.
MIT License
199 stars 16 forks source link

undefined variable "fieldKey" referenced for matrix blocks, added new… #75

Closed brimby closed 4 years ago

brimby commented 4 years ago

The cloning process was breaking on a Matrix field. I found this error in logs:

2020-09-26 21:09:49 [-][3][-][error][yii\base\ErrorException:8] yii\base\ErrorException: Undefined variable: fieldKey in /Users/brianhamby/Projects/thayer_website/vendor/verbb/field-manager/src/services/Service.php:162

Tracked it to a reference to an undefined variable "$fieldKey" (the variable is scoped inside a foreach loop that is inaccessible) and so I made a "$blockKey" variable to serve the purpose of the matrix block.

engram-design commented 4 years ago

Thanks!