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:
authorRouslan Placella <rouslan@placella.com>2012-12-10 03:42:31 +0400
committerRouslan Placella <rouslan@placella.com>2012-12-14 23:05:04 +0400
commitfe95c8988d0616a5bb93805c9bcbf5c710b87e8e (patch)
tree47e457c13ba39664595911c718a24c0dd2754ad4 /server_status_queries.php
parentf7f15663e2b0e5221852a2e50ef5723071e440bc (diff)
phpcs fixes
Diffstat (limited to 'server_status_queries.php')
-rw-r--r--server_status_queries.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/server_status_queries.php b/server_status_queries.php
index fad2461d15..218878b2c8 100644
--- a/server_status_queries.php
+++ b/server_status_queries.php
@@ -1,6 +1,7 @@
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
+ * Displays query statistics for the server
*
* @package PhpMyAdmin
*/
@@ -48,6 +49,8 @@ exit;
/**
* Returns the html content for the query statistics
*
+ * @param object $ServerStatusData An instance of the PMA_ServerStatusData class
+ *
* @return string
*/
function getQueryStatisticsHtml($ServerStatusData)
@@ -137,7 +140,9 @@ function getQueryStatisticsHtml($ServerStatusData)
);
$retval .= '</td>';
$retval .= '<td class="value">';
- $retval .= htmlspecialchars(PMA_Util::formatNumber($value * $perc_factor, 0, 2));
+ $retval .= htmlspecialchars(
+ PMA_Util::formatNumber($value * $perc_factor, 0, 2)
+ );
$retval .= '</td>';
$retval .= '</tr>';
}