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:
authorMarc Delisle <marc@infomarc.info>2013-05-26 19:34:43 +0400
committerMarc Delisle <marc@infomarc.info>2013-05-26 19:34:43 +0400
commitb8e4f346a5c0b029cc25887c990a190d22c0f18c (patch)
tree9b2b7a18b4e9134d3d3a669fc59f826086519491 /server_status.php
parentfc851a22223736949299cc32e770cae1ebcaa93b (diff)
Clarify function name
Diffstat (limited to 'server_status.php')
-rw-r--r--server_status.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/server_status.php b/server_status.php
index ff9026778a..02eda050dc 100644
--- a/server_status.php
+++ b/server_status.php
@@ -532,7 +532,7 @@ function PMA_getTableProcesslistHtml($ServerStatusData)
if (! $show_full_sql && strlen($process['Info']) > $GLOBALS['cfg']['MaxCharactersInDisplayedSQL']) {
$retval .= htmlspecialchars(substr($process['Info'], 0, $GLOBALS['cfg']['MaxCharactersInDisplayedSQL'])) . '[...]';
} else {
- $retval .= PMA_SQP_formatHtml(PMA_SQP_parse($process['Info']));
+ $retval .= PMA_SQP_format(PMA_SQP_parse($process['Info']));
}
}
$retval .= '</td>';