mirror of
https://github.com/vrana/adminer.git
synced 2025-08-31 18:11:52 +02:00
Fix drag-n-drop moving of function parameters
This commit is contained in:
@@ -39,12 +39,16 @@ $routine_languages = routine_languages();
|
|||||||
<?php echo ($routine_languages ? lang('Language') . ": " . html_select("language", $routine_languages, $row["language"]) . "\n" : ""); ?>
|
<?php echo ($routine_languages ? lang('Language') . ": " . html_select("language", $routine_languages, $row["language"]) . "\n" : ""); ?>
|
||||||
<input type="submit" value="<?php echo lang('Save'); ?>">
|
<input type="submit" value="<?php echo lang('Save'); ?>">
|
||||||
<div class="scrollable">
|
<div class="scrollable">
|
||||||
<table cellspacing="0" class="nowrap">
|
<table cellspacing="0" class="nowrap" id="edit-fields">
|
||||||
<?php
|
<?php
|
||||||
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 "<tbody><tr><th></th>",
|
||||||
|
"<th>", lang('Return type'), "</th>";
|
||||||
|
|
||||||
edit_type("returns", $row["returns"], $collations, array(), ($jush == "pgsql" ? array("void", "trigger") : array()));
|
edit_type("returns", $row["returns"], $collations, array(), ($jush == "pgsql" ? array("void", "trigger") : array()));
|
||||||
|
|
||||||
|
echo "<td></td></tr></tbody>\n";
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
</table>
|
</table>
|
||||||
|
Reference in New Issue
Block a user