diff --git a/ChangeLog b/ChangeLog index 004b884cac..f6c4450ba2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -11,6 +11,7 @@ phpMyAdmin - ChangeLog + Patch #3502814 for rfe #3187077 Change password buttons should match + rfe #3488640 Expand table-group in non-light navigation frame if only one + Patch #3509360 Contest-3: Option "Truncate table" before "insert" ++ Patch #3506552 Contest-2: Show index information in the data dictionary 3.5.0.0 (not yet released) + rfe #2021981 [interface] Add support for mass prefix change. diff --git a/db_datadict.php b/db_datadict.php index e57206f960..717315e156 100644 --- a/db_datadict.php +++ b/db_datadict.php @@ -22,7 +22,7 @@ if (! isset($selected_tbl)) { $cfgRelation = PMA_getRelationsParam(); require_once 'libraries/transformations.lib.php'; - +require_once 'libraries/Index.class.php'; /** * Check parameters @@ -262,6 +262,12 @@ foreach ($tables as $table) { $count++; ?> + 0){ + echo PMA_Index::getView($table, $db, true); + } +?>