When replicated many tables, the table of replication status is extended to multiple screens.
You can add a function PMA_replication_print_status_table partition of space into a variable Replicate_Do_Table.
- echo ${"server_{$type}_replication"}[0][$variable];
+ if ($variable == 'Replicate_Do_Table')
+ echo preg_replace('/,/', ', ', ${"server_{$type}_replication"}[0][$variable]);
+ else
+ echo ${"server_{$type}_replication"}[0][$variable];
This requested feature was implemented in the repository and will be part of a future release; thanks for suggesting.
My pleasure. Thank you.