diff --git a/adminer/include/driver.inc.php b/adminer/include/driver.inc.php index ef2d1642..a04f1860 100644 --- a/adminer/include/driver.inc.php +++ b/adminer/include/driver.inc.php @@ -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" )); }