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:
authorKasun Chathuranga <chathuranga.jayaneththi@gmail.com>2013-04-30 21:35:18 +0400
committerKasun Chathuranga <chathuranga.jayaneththi@gmail.com>2013-04-30 21:35:18 +0400
commitd933575811b8b76463d20610eeb53f2173ead4cb (patch)
tree596e9cdaf1fc8831d591867738cd7e952351d205 /server_status.php
parentf9e13eddd41252f74ee673cc8c742db76dd62aeb (diff)
PMA_DBI_try_query --> PMA_DBI_tryQuery
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 27d3c6ad80..1b4bc58eba 100644
--- a/server_status.php
+++ b/server_status.php
@@ -27,7 +27,7 @@ $ServerStatusData = new PMA_ServerStatusData();
* Kills a selected process
*/
if (! empty($_REQUEST['kill'])) {
- if (PMA_DBI_try_query('KILL ' . $_REQUEST['kill'] . ';')) {
+ if (PMA_DBI_tryQuery('KILL ' . $_REQUEST['kill'] . ';')) {
$message = PMA_Message::success(__('Thread %s was successfully killed.'));
} else {
$message = PMA_Message::error(