Add column header for count column
Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
This commit is contained in:
parent
43e4e5d2f2
commit
451bec8414
@ -130,7 +130,7 @@ function PMA_getHtmlForServerStateTraffic($ServerStatusData)
|
||||
$retval = '<table id="serverstatustraffic" class="data noclick">';
|
||||
$retval .= '<thead>';
|
||||
$retval .= '<tr>';
|
||||
$retval .= '<th colspan="2">';
|
||||
$retval .= '<th>';
|
||||
$retval .= __('Traffic') . ' ';
|
||||
$retval .= PMA_Util::showHint(
|
||||
__(
|
||||
@ -139,6 +139,7 @@ function PMA_getHtmlForServerStateTraffic($ServerStatusData)
|
||||
)
|
||||
);
|
||||
$retval .= '</th>';
|
||||
$retval .= '<th>#</th>';
|
||||
$retval .= '<th>ø ' . __('per hour') . '</th>';
|
||||
$retval .= '</tr>';
|
||||
$retval .= '</thead>';
|
||||
@ -222,7 +223,8 @@ function PMA_getHtmlForServerStateConnections($ServerStatusData)
|
||||
$retval = '<table id="serverstatusconnections" class="data noclick">';
|
||||
$retval .= '<thead>';
|
||||
$retval .= '<tr>';
|
||||
$retval .= '<th colspan="2">' . __('Connections') . '</th>';
|
||||
$retval .= '<th>' . __('Connections') . '</th>';
|
||||
$retval .= '<th>#</th>';
|
||||
$retval .= '<th>ø ' . __('per hour') . '</th>';
|
||||
$retval .= '<th>%</th>';
|
||||
$retval .= '</tr>';
|
||||
|
||||
Loading…
Reference in New Issue
Block a user