Skip to content

Commit 0a05f8b

Browse files
Merge pull request #18222 from liviuconcioiu/18184
Fix #18184 - Fix TypeError Table::getRowFormat()
2 parents bd52a99 + b26033b commit 0a05f8b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

libraries/classes/Table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ public function getRowFormat(): string
403403
return '';
404404
}
405405

406-
return $tableRowFormat;
406+
return $tableRowFormat ?? '';
407407
}
408408

409409
/**

0 commit comments

Comments
 (0)