[interface] Add link to documentation for status variables.

This commit is contained in:
Michal Čihař
2011-01-28 09:28:37 +01:00
parent 5b900ead54
commit d50215684a
2 changed files with 4 additions and 2 deletions

View File

@@ -130,6 +130,7 @@
- bug #3141327 [relation] Foreign key input options - bug #3141327 [relation] Foreign key input options
- [export] Better handling of export to PHP array. - [export] Better handling of export to PHP array.
- rfe #3158867 [privileges] No DROP DATABASE warning if you delete a user - rfe #3158867 [privileges] No DROP DATABASE warning if you delete a user
- [interface] Add link to documentation for status variables.
3.3.10.0 (not yet released) 3.3.10.0 (not yet released)
- patch #3147400 [structure] Aria table size printed as unknown, - patch #3147400 [structure] Aria table size printed as unknown,

View File

@@ -41,7 +41,7 @@ require_once './libraries/replication_gui.lib.php';
require_once './libraries/chart.lib.php'; require_once './libraries/chart.lib.php';
/** /**
* Messages are built using the message name * Messages are built using the message name
*/ */
$strShowStatusBinlog_cache_disk_useDescr = __('The number of transactions that used the temporary binary log cache but that exceeded the value of binlog_cache_size and used a temporary file to store statements from the transaction.'); $strShowStatusBinlog_cache_disk_useDescr = __('The number of transactions that used the temporary binary log cache but that exceeded the value of binlog_cache_size and used a temporary file to store statements from the transaction.');
$strShowStatusBinlog_cache_useDescr = __('The number of transactions that used the temporary binary log cache.'); $strShowStatusBinlog_cache_useDescr = __('The number of transactions that used the temporary binary log cache.');
@@ -789,7 +789,8 @@ if (! empty($section['title'])) {
$odd_row = !$odd_row; $odd_row = !$odd_row;
?> ?>
<tr class="<?php echo $odd_row ? 'odd' : 'even'; ?>"> <tr class="<?php echo $odd_row ? 'odd' : 'even'; ?>">
<th class="name"><?php echo htmlspecialchars($name); ?></th> <th class="name"><?php echo htmlspecialchars($name) . PMA_showMySQLDocu('server-status-variables', 'server-status-variables', false, 'statvar_' . $name); ?>
</th>
<td class="value"><?php <td class="value"><?php
if (isset($alerts[$name])) { if (isset($alerts[$name])) {
if ($value > $alerts[$name]) { if ($value > $alerts[$name]) {