Skip to content

Commit 50dd523

Browse files
committed
test: remove unnecessary normalization
Signed-off-by: memleakd <121398829+memleakd@users.noreply.github.com>
1 parent 811476f commit 50dd523

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

system/Commands/Database/ShowTableInfo.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ private function makeTbodyForShowAllTables(array $tables): array
243243
{
244244
$this->removeDBPrefix();
245245

246-
foreach (array_values($tables) as $id => $tableName) {
246+
foreach ($tables as $id => $tableName) {
247247
$table = $this->db->protectIdentifiers($tableName);
248248
$db = $this->db->query("SELECT * FROM {$table}");
249249

0 commit comments

Comments
 (0)