Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Foellmann <foellmann@foe-services.de>2014-07-28 14:13:10 +0400
committerChristian Foellmann <foellmann@foe-services.de>2014-07-28 14:13:10 +0400
commit276394119dfbe117acd411a3862de597ba35a2ad (patch)
tree3dc394a15f459d6324e3452e15e9446e47fe3bd0 /libraries/server_status_variables.lib.php
parentc8c2e72886de1b71f5abcaa295075da9666096b5 (diff)
UPDATE phpmyadmin 4.2.6 multilanguage
Diffstat (limited to 'libraries/server_status_variables.lib.php')
-rw-r--r--libraries/server_status_variables.lib.php18
1 files changed, 9 insertions, 9 deletions
diff --git a/libraries/server_status_variables.lib.php b/libraries/server_status_variables.lib.php
index b052165457..16fc8502a4 100644
--- a/libraries/server_status_variables.lib.php
+++ b/libraries/server_status_variables.lib.php
@@ -15,7 +15,7 @@ if (! defined('PHPMYADMIN')) {
/**
* Returns the html for the list filter
*
- * @param Object $ServerStatusData An instance of the PMA_ServerStatusData class
+ * @param PMA_ServerStatusData $ServerStatusData Server status data
*
* @return string
*/
@@ -65,7 +65,7 @@ function PMA_getHtmlForFilter($ServerStatusData)
} else {
$selected = '';
}
- $retval .= '<option' . $selected . ' value="' . $section_id. '">';
+ $retval .= '<option' . $selected . ' value="' . $section_id . '">';
$retval .= htmlspecialchars($section_name) . '</option>';
}
}
@@ -87,7 +87,7 @@ function PMA_getHtmlForFilter($ServerStatusData)
/**
* Prints the suggestion links
*
- * @param Object $ServerStatusData An instance of the PMA_ServerStatusData class
+ * @param PMA_ServerStatusData $ServerStatusData Server status data
*
* @return string
*/
@@ -122,7 +122,7 @@ function PMA_getHtmlForLinkSuggestions($ServerStatusData)
/**
* Returns a table with variables information
*
- * @param Object $ServerStatusData An instance of the PMA_ServerStatusData class
+ * @param PMA_ServerStatusData $ServerStatusData Server status data
*
* @return string
*/
@@ -165,8 +165,8 @@ function PMA_getHtmlForVariablesList($ServerStatusData)
'Qcache_lowmem_prunes' => 0,
'Qcache_free_blocks' =>
- isset($ServerStatusData->server_status['Qcache_total_blocks'])
- ? $ServerStatusData->server_status['Qcache_total_blocks'] / 5
+ isset($ServerStatusData->status['Qcache_total_blocks'])
+ ? $ServerStatusData->status['Qcache_total_blocks'] / 5
: 0,
'Slow_launch_threads' => 0,
@@ -202,9 +202,9 @@ function PMA_getHtmlForVariablesList($ServerStatusData)
/**
* Returns HTML for render variables list
*
- * @param Object $ServerStatusData An instance of the PMA_ServerStatusData class
- * @param Array $alerts Alert Array
- * @param Array $strShowStatus Status Array
+ * @param PMA_ServerStatusData $ServerStatusData Server status data
+ * @param Array $alerts Alert Array
+ * @param Array $strShowStatus Status Array
*
* @return string
*/