]> git.joonet.de Git - adminer.git/commitdiff
Remove unused argument
authorJakub Vrana <jakub@vrana.cz>
Fri, 9 Mar 2018 16:46:10 +0000 (17:46 +0100)
committerJakub Vrana <jakub@vrana.cz>
Fri, 9 Mar 2018 17:19:14 +0000 (18:19 +0100)
adminer/drivers/sqlite.inc.php

index ba988925550d3e733a7476cf18c9e50191eb2dff..c688e7741850e8eeefd28c92d35c3a4a998aea95 100644 (file)
@@ -273,7 +273,7 @@ if (isset($_GET["sqlite"]) || isset($_GET["sqlite2"])) {
        }
 
        function tables_list() {
-               return get_key_vals("SELECT name, type FROM sqlite_master WHERE type IN ('table', 'view') ORDER BY (name = 'sqlite_sequence'), name", 1);
+               return get_key_vals("SELECT name, type FROM sqlite_master WHERE type IN ('table', 'view') ORDER BY (name = 'sqlite_sequence'), name");
        }
 
        function count_tables($databases) {