diff --git a/server_status.php b/server_status.php index 46386b3eda..2d4a33e32c 100644 --- a/server_status.php +++ b/server_status.php @@ -122,7 +122,7 @@ function getServerTrafficHtml($ServerStatusData) $retval .= __('Replication status'); $retval .= ''; foreach ($GLOBALS['replication_types'] as $type) { - if (${"server_{$type}_status"}) { + if (isset(${"server_{$type}_status"}) && ${"server_{$type}_status"}) { PMA_replication_print_status_table($type); } }