Skip to content

Commit

Permalink
Fix #15899 - Uncaught TypeError: mb_strtoupper - Relation view of a view
Browse files Browse the repository at this point in the history
Fixes: #15899
Signed-off-by: William Desportes <williamdes@wdes.fr>
  • Loading branch information
williamdes committed Feb 7, 2020
1 parent 6729c89 commit 25290cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tbl_relation.php
Expand Up @@ -45,7 +45,7 @@
$relation = $containerBuilder->get('relation');
$cfgRelation = $relation->getRelationsParam();
$tbl_storage_engine = mb_strtoupper(
$dbi->getTable($db, $table)->getStatusInfo('Engine')
$dbi->getTable($db, $table)->getStatusInfo('Engine') ?? ''
);
$upd_query = new Table($table, $db, $dbi);

Expand Down

0 comments on commit 25290cc

Please sign in to comment.