From b26033b9509f37578997e433f1e044c808032d76 Mon Sep 17 00:00:00 2001 From: Liviu-Mihail Concioiu Date: Sun, 5 Mar 2023 22:19:33 +0100 Subject: [PATCH] Fix TypeError Table::getRowFormat() Signed-off-by: Liviu-Mihail Concioiu --- libraries/classes/Table.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/classes/Table.php b/libraries/classes/Table.php index e5e56d740938..3551b65365ff 100644 --- a/libraries/classes/Table.php +++ b/libraries/classes/Table.php @@ -403,7 +403,7 @@ public function getRowFormat(): string return ''; } - return $tableRowFormat; + return $tableRowFormat ?? ''; } /**