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:
authorChirayu Chiripal <chirayu.chiripal@gmail.com>2014-06-20 21:10:12 +0400
committerChirayu Chiripal <chirayu.chiripal@gmail.com>2014-06-24 17:43:21 +0400
commit32511719b1a8d16922ee146697ec527c61fd56e9 (patch)
treee528ba15c1e26723ae585ca3669a8fa46009c65b /server_status.php
parent98dec51672f7223fc0e1387a5eaee404db950e23 (diff)
RFE-1490 Dynamic process list
Signed-off-by: Chirayu Chiripal <chirayu.chiripal@gmail.com>
Diffstat (limited to 'server_status.php')
-rw-r--r--server_status.php18
1 files changed, 0 insertions, 18 deletions
diff --git a/server_status.php b/server_status.php
index 7bee6558f6..6168318c2f 100644
--- a/server_status.php
+++ b/server_status.php
@@ -25,24 +25,6 @@ if (PMA_DRIZZLE) {
$ServerStatusData = new PMA_ServerStatusData();
/**
- * Kills a selected process
- */
-if (! empty($_REQUEST['kill'])) {
- $query = $GLOBALS['dbi']->getKillQuery((int)$_REQUEST['kill']);
- if ($GLOBALS['dbi']->tryQuery($query)) {
- $message = PMA_Message::success(__('Thread %s was successfully killed.'));
- } else {
- $message = PMA_Message::error(
- __(
- 'phpMyAdmin was unable to kill thread %s.'
- . ' It probably has already been closed.'
- )
- );
- }
- $message->addParam($_REQUEST['kill']);
-}
-
-/**
* start output
*/
$response = PMA_Response::getInstance();