diff --git a/tbl_relation.php b/tbl_relation.php index 2200cd63cf..0ece707bf0 100644 --- a/tbl_relation.php +++ b/tbl_relation.php @@ -605,7 +605,10 @@ if (count($columns) > 0) { . ''; } // end if (we have columns in this table) -$html_output .= '
'. PMA_getHtmlForDisplayIndexes(); +if (PMA_Util::isForeignKeySupported($tbl_storage_engine)) { + $html_output .= '
' + . PMA_getHtmlForDisplayIndexes(); +} // Render HTML output PMA_Response::getInstance()->addHTML($html_output);