diff --git a/ChangeLog b/ChangeLog index c226dd6ec9..671283f4f7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -42,6 +42,7 @@ VerboseMultiSubmit, ReplaceHelpImg + [import] New plugin: import mediawiki + Add Ajax support to Fast filter in order to search the term in all database tables - bug #3535015 [navi] DbFilter, TableFilter clear button hidden on Chrome ++ rfe #3528994 [interface] Allow wrapping possibly long values in replication-status table 3.5.3.0 (not yet released) diff --git a/libraries/replication_gui.lib.php b/libraries/replication_gui.lib.php index ca8ed5059f..58317e5770 100644 --- a/libraries/replication_gui.lib.php +++ b/libraries/replication_gui.lib.php @@ -143,7 +143,17 @@ function PMA_replication_print_status_table($type, $hidden = false, $title = tru } else { echo ''; } - echo ${"server_{$type}_replication"}[0][$variable]; + // allow wrapping long table lists into multiple lines + static $variables_wrap = array( + 'Replicate_Do_DB', 'Replicate_Ignore_DB', + 'Replicate_Do_Table', 'Replicate_Ignore_Table', + 'Replicate_Wild_Do_Table', 'Replicate_Wild_Ignore_Table'); + if (in_array($variable, $variables_wrap)) { + echo str_replace(',', ', ', ${"server_{$type}_replication"}[0][$variable]); + } + else { + echo ${"server_{$type}_replication"}[0][$variable]; + } echo ''; echo ' ';