From 3d84870db80da7effff0be5d24342328be2b94ab Mon Sep 17 00:00:00 2001 From: Sarjuuk Date: Wed, 19 Jun 2024 01:34:35 +0200 Subject: [PATCH] DBC/Fixup * fix broken locale string extraction after e164023b8a27defdd1474ada69097cc4df30e95e --- setup/tools/dbc.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/tools/dbc.class.php b/setup/tools/dbc.class.php index 036efb41..16a47fc0 100644 --- a/setup/tools/dbc.class.php +++ b/setup/tools/dbc.class.php @@ -427,7 +427,7 @@ class DBC $outIdx = $j + $offset; - if (isset($row[$outIdx]) && $type != 'S') + if (!empty($row[$outIdx]) && $type != 'S') continue; switch ($type)