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

SQLite: Add missing border to Status

This commit is contained in:
Jakub Vrana
2025-04-02 21:12:48 +02:00
parent 2b6a262d56
commit 22dc4ff444

View File

@@ -704,7 +704,7 @@ if (isset($_GET["sqlite"])) {
function show_status() { function show_status() {
$return = array(); $return = array();
foreach (get_vals("PRAGMA compile_options") as $option) { foreach (get_vals("PRAGMA compile_options") as $option) {
$return[] = explode("=", $option, 2); $return[] = explode("=", $option, 2) + array('', '');
} }
return $return; return $return;
} }