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:
authorDieter Adriaenssens <ruleant@users.sourceforge.net>2011-11-24 18:32:30 +0400
committerDieter Adriaenssens <ruleant@users.sourceforge.net>2011-11-24 18:32:30 +0400
commitf62c4a1809458008c778afac98e481f54def216b (patch)
tree880e098ccc8a79ec589f2229e5edbaed1a7db0f3 /tbl_addfield.php
parent90bd76540c22cdc1fca5529cf00f7dbc694b6b51 (diff)
coding style : control structures
Diffstat (limited to 'tbl_addfield.php')
-rw-r--r--tbl_addfield.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tbl_addfield.php b/tbl_addfield.php
index ce8735e8db..55a980c95d 100644
--- a/tbl_addfield.php
+++ b/tbl_addfield.php
@@ -185,7 +185,7 @@ if (isset($_REQUEST['do_save_data'])) {
$message = PMA_Message::success(__('Table %1$s has been altered successfully'));
$message->addParam($table);
- if( $GLOBALS['is_ajax_request'] == true) {
+ if ( $GLOBALS['is_ajax_request'] == true) {
$extra_data['sql_query'] = PMA_showMessage(null, $sql_query);
PMA_ajaxResponse($message, $message->isSuccess(), $extra_data);
}