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:
authorHugues Peccatte <hugues.peccatte@gmail.com>2015-10-04 19:04:49 +0300
committerHugues Peccatte <hugues.peccatte@gmail.com>2015-10-04 19:04:49 +0300
commit6f4676cdfc2aea568a73985b652fe790b33d1aed (patch)
treec04bf4627a058a998b7adba9f3b162aec1188cf4 /server_status_processes.php
parentc0617bcd5f44e05376b8df7f7b5bc8fae6b1ad90 (diff)
parent77c5b0a8ad091d3b5ae60dd993d804a88beacc09 (diff)
Merge remote-tracking branch 'origin/master' into useNamespaces_master
Diffstat (limited to 'server_status_processes.php')
-rw-r--r--server_status_processes.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/server_status_processes.php b/server_status_processes.php
index e5ffd70f53..4fa796cb6c 100644
--- a/server_status_processes.php
+++ b/server_status_processes.php
@@ -29,7 +29,7 @@ if ($response->isAjax() && !empty($_REQUEST['kill'])) {
$query = $GLOBALS['dbi']->getKillQuery((int)$_REQUEST['kill']);
if ($GLOBALS['dbi']->tryQuery($query)) {
$message = PMA\libraries\Message::success(__('Thread %s was successfully killed.'));
- $response->isSuccess(true);
+ $response->setRequestStatus(true);
} else {
$message = PMA\libraries\Message::error(
__(
@@ -37,7 +37,7 @@ if ($response->isAjax() && !empty($_REQUEST['kill'])) {
. ' It probably has already been closed.'
)
);
- $response->isSuccess(false);
+ $response->setRequestStatus(false);
}
$message->addParam($_REQUEST['kill']);
$response->addJSON('message', $message);