1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-08 15:47:00 +02:00

SQLite: Fix calling private property

This commit is contained in:
Jakub Vrana
2025-03-11 10:54:21 +01:00
parent 199edfe11f
commit ae57d42105

View File

@@ -47,7 +47,7 @@ if (isset($_GET["sqlite"])) {
if (!is_object($result)) { if (!is_object($result)) {
return false; return false;
} }
$row = $result->result->fetchArray(); $row = $result->fetch_row();
return $row ? $row[$field] : false; return $row ? $row[$field] : false;
} }
} }