diff --git a/CHANGELOG.md b/CHANGELOG.md index a884b5c4..0c528b27 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,10 @@ ## Adminer dev - Align numeric functions right - Autocomplete: Support table aliases -- Fix type error in Create function (bug #1053) +- Fix type error in Create function (bug #1053, regression from 5.1.1) - MySQL: Avoid warning on selecting tables with fulltext indexes (bug #1036) - MySQL, PostgreSQL: Support index algorithms (bug #1030) -- MySQL: Fix connecting with port (bug #1057, regression from 5.1.1) +- MySQL: Fix connecting to localhost:3306 (bug #1057, regression from 5.1.1) - PostgreSQL, CockroachDB: Creating partitioned tables (bug #1031) - PostgreSQL: Move partitioned tables from table list to parent table - PostgreSQL: Support partial indices (bug #1048) diff --git a/adminer/indexes.inc.php b/adminer/indexes.inc.php index 746c0433..7ee5aa75 100644 --- a/adminer/indexes.inc.php +++ b/adminer/indexes.inc.php @@ -125,7 +125,7 @@ if ($lengths || support("descidx")) { " . lang('Condition'); + echo "" . lang('Condition'); } ?> @@ -167,7 +167,7 @@ foreach ($row["indexes"] as $index) { echo "\n"; if (support("partial_indexes")) { - echo "\n"; + echo "\n"; } echo "" . icon("cross", "drop_col[$j]", "x", lang('Remove')) . script("qsl('button').onclick = partial(editingRemoveRow, 'indexes\$1[type]');"); }