We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da8929e commit 2108983Copy full SHA for 2108983
inc/composite.class.php
@@ -115,7 +115,10 @@ public function buildCompositeRelations() {
115
break;
116
117
case PluginFormcreatorTargetTicket::class:
118
- $ticket = $this->targets['PluginFormcreatorTargetTicket'][$row['items_id']];
+ $ticket = null;
119
+ if (isset($this->targets['PluginFormcreatorTargetTicket'][$row['items_id']])) {
120
+ $ticket = $this->targets['PluginFormcreatorTargetTicket'][$row['items_id']];
121
+ }
122
if ($ticket !== null) {
123
$this->ticket_ticket->add([
124
'link' => $row['link'],
0 commit comments