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>2015-10-03 17:14:29 +0300
committerMarc Delisle <marc@infomarc.info>2015-10-03 17:14:29 +0300
commitfd7c8522ea4cca807d0a6cdaf8ee5e4e8d57dc3b (patch)
treeddcb6be4068801fdd628c25de85fd317de0d9c1c /view_create.php
parent5eef3a9b604050fac1e4d34be1f50b57e61aaeec (diff)
Clarify method name
Signed-off-by: Marc Delisle <marc@infomarc.info>
Diffstat (limited to 'view_create.php')
-rw-r--r--view_create.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/view_create.php b/view_create.php
index 5ea2aa3364..766ce0aea6 100644
--- a/view_create.php
+++ b/view_create.php
@@ -97,7 +97,7 @@ if (isset($_REQUEST['createview']) || isset($_REQUEST['alterview'])) {
. $GLOBALS['dbi']->getError()
)
);
- $response->isSuccess(false);
+ $response->setRequestStatus(false);
exit;
}
@@ -141,7 +141,7 @@ if (isset($_REQUEST['createview']) || isset($_REQUEST['alterview'])) {
'message',
PMA_Util::getMessage(PMA_Message::success(), $sql_query)
);
- $response->isSuccess(true);
+ $response->setRequestStatus(true);
}
exit;