]> git.joonet.de Git - adminer.git/commitdiff
SQLite: Add missing border to Status
authorJakub Vrana <jakub@vrana.cz>
Wed, 2 Apr 2025 19:12:48 +0000 (21:12 +0200)
committerJakub Vrana <jakub@vrana.cz>
Wed, 2 Apr 2025 19:12:48 +0000 (21:12 +0200)
adminer/drivers/sqlite.inc.php

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