We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d327492 + b5aeb28 commit 8d33bd6Copy full SHA for 8d33bd6
Classes/Hook/CreateMarker.php
@@ -371,7 +371,7 @@ protected function shouldProcessField(): bool
371
*/
372
protected function shouldRenameMarker(array $markers): bool
373
{
374
- return !empty($markers[$this->uid]) && !empty($this->properties['marker'])
375
- && $markers[$this->uid] !== $this->properties['marker'];
+ return !empty($markers[$this->uid]) && isset($this->properties['marker'])
+ && $markers[$this->uid] !== $this->properties['marker'];
376
}
377
0 commit comments