1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-09 16:17:48 +02:00

Fix type error in Create function (fix #1053)

This commit is contained in:
Jakub Vrana
2025-04-21 08:36:32 +02:00
parent 36e55a3f55
commit 1466051402
2 changed files with 2 additions and 1 deletions

View File

@@ -1,6 +1,7 @@
## Adminer dev ## Adminer dev
- Align numeric functions right - Align numeric functions right
- Autocomplete: Support table aliases - Autocomplete: Support table aliases
- Fix type error in Create function (bug #1053)
- MySQL: Avoid warning on selecting tables with fulltext indexes (bug #1036) - MySQL: Avoid warning on selecting tables with fulltext indexes (bug #1036)
- MySQL, PostgreSQL: Support index algorithms (bug #1030) - MySQL, PostgreSQL: Support index algorithms (bug #1030)
- PostgreSQL, CockroachDB: Creating partitioned tables (bug #1031) - PostgreSQL, CockroachDB: Creating partitioned tables (bug #1031)

View File

@@ -56,7 +56,7 @@ echo ($collations ? "<datalist id='collations'>" . optionlist($collations) . "</
edit_fields($row["fields"], $collations, $routine); edit_fields($row["fields"], $collations, $routine);
if (isset($_GET["function"])) { if (isset($_GET["function"])) {
echo "<tr><td>" . lang('Return type'); echo "<tr><td>" . lang('Return type');
edit_type("returns", $row["returns"], $collations, array(), (JUSH == "pgsql" ? array("void", "trigger") : array())); edit_type("returns", (array) $row["returns"], $collations, array(), (JUSH == "pgsql" ? array("void", "trigger") : array()));
} }
?> ?>
</table> </table>