Skip to content

Commit

Permalink
Merge pull request #18222 from liviuconcioiu/18184
Browse files Browse the repository at this point in the history
Fix #18184 - Fix TypeError Table::getRowFormat()
  • Loading branch information
MauricioFauth committed Mar 5, 2023
2 parents bd52a99 + b26033b commit 0a05f8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/classes/Table.php
Expand Up @@ -403,7 +403,7 @@ public function getRowFormat(): string
return '';
}

return $tableRowFormat;
return $tableRowFormat ?? '';
}

/**
Expand Down

0 comments on commit 0a05f8b

Please sign in to comment.