]> git.joonet.de Git - adminer.git/commitdiff
Add missing space in query
authorJakub Vrana <jakub@vrana.cz>
Thu, 8 Aug 2013 21:50:43 +0000 (14:50 -0700)
committerJakub Vrana <jakub@vrana.cz>
Thu, 8 Aug 2013 21:50:43 +0000 (14:50 -0700)
adminer/include/driver.inc.php

index ef2d16424c1dbadce71db94a9e3ec183d2433d68..a04f18603a504b80b7ddf21f15bb2ee0830c1f7b 100644 (file)
@@ -73,7 +73,7 @@
        function insert($table, $set) {
                return queries("INSERT INTO " . table($table) . ($set
                        ? " (" . implode(", ", array_keys($set)) . ")\nVALUES (" . implode(", ", $set) . ")"
-                       : "DEFAULT VALUES"
+                       : " DEFAULT VALUES"
                ));
        }