Display message about missing master status

This commit is contained in:
Jakub Vrana 2017-02-20 14:06:19 +01:00
parent 91bd2e84f5
commit 4588af77ac

View file

@ -1,8 +1,11 @@
<?php <?php
page_header(lang('Replication')); page_header(lang('Replication'));
echo "<p><b>" . lang('Master status') . "</b>" . doc_link(array("sql" => "show-master-status.html")) . "\n"; echo "<h3>" . lang('Master status') . doc_link(array("sql" => "show-master-status.html")) . "</h3>\n";
$master_replication_status = replication_status("MASTER"); $master_replication_status = replication_status("MASTER");
if (!$master_replication_status) {
echo "<p class='message'>" . lang('No rows.') . "\n";
} else {
echo "<table cellspacing='0'>\n"; echo "<table cellspacing='0'>\n";
foreach ($master_replication_status[0] as $key => $val) { foreach ($master_replication_status[0] as $key => $val) {
echo "<tr>"; echo "<tr>";
@ -10,11 +13,12 @@ foreach ($master_replication_status[0] as $key => $val) {
echo "<td>" . nbsp($val); echo "<td>" . nbsp($val);
} }
echo "</table>\n"; echo "</table>\n";
}
$slave_replication_status = replication_status("SLAVE"); $slave_replication_status = replication_status("SLAVE");
if (!empty($slave_replication_status)) { if ($slave_replication_status) {
echo "<p><b>" . lang('Slave status') . "</b>" . doc_link(array("sql" => "show-slave-status.html")) . "\n"; echo "<h3>" . lang('Slave status') . doc_link(array("sql" => "show-slave-status.html")) . "</h3>\n";
foreach ($slave_replication_status as $slave) { foreach ($slave_replication_status[0] as $slave) {
echo "<table cellspacing='0'>\n"; echo "<table cellspacing='0'>\n";
foreach ($slave as $key => $val) { foreach ($slave as $key => $val) {
echo "<tr>"; echo "<tr>";