message was hardcoded

This commit is contained in:
Marc Delisle
2009-09-12 11:17:56 +00:00
parent 39ed47677f
commit 26c2543f37
2 changed files with 2 additions and 2 deletions

View File

@@ -46,7 +46,7 @@ function PMA_TableHeader($db_is_information_schema = false, $replication = false
.' <th>' . PMA_SortableTableHeader($GLOBALS['strTable'], 'table') . '</th>' . "\n"; .' <th>' . PMA_SortableTableHeader($GLOBALS['strTable'], 'table') . '</th>' . "\n";
if ($replication) { if ($replication) {
echo ' <th>' . "\n" echo ' <th>' . "\n"
.' ' . "Replication" . "\n" .' ' . $GLOBALS['strReplication'] . "\n"
.' </th>'; .' </th>';
} }
echo ' <th colspan="' . $action_colspan . '">' . "\n" echo ' <th colspan="' . $action_colspan . '">' . "\n"

View File

@@ -67,7 +67,7 @@ if ($is_superuser) {
$tabs['replication']['icon'] = 's_replication.png'; $tabs['replication']['icon'] = 's_replication.png';
$tabs['replication']['link'] = 'server_replication.php'; $tabs['replication']['link'] = 'server_replication.php';
$tabs['replication']['text'] = "Replication"; $tabs['replication']['text'] = $strReplication;
} }
if (! empty($binary_logs)) { if (! empty($binary_logs)) {