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:
authorMadhura Jayaratne <madhura.cj@gmail.com>2011-09-23 09:41:41 +0400
committerMadhura Jayaratne <madhura.cj@gmail.com>2011-09-23 09:41:41 +0400
commit13adb5adf7e2b429819a85131edd998b34726ad7 (patch)
tree85704a296ba153690710f4eee4fb5ca063f914a5 /sql.php
parent9bcb83af03d9f988a2e2c754e6b9b3cf2c468555 (diff)
Use lower case for true, false and null
Diffstat (limited to 'sql.php')
-rw-r--r--sql.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/sql.php b/sql.php
index 53d9759ade..42a9ac1c85 100644
--- a/sql.php
+++ b/sql.php
@@ -104,7 +104,7 @@ if (isset($_REQUEST['get_relational_values']) && $_REQUEST['get_relational_value
}
$extra_data['dropdown'] = $dropdown;
- PMA_ajaxResponse(NULL, true, $extra_data);
+ PMA_ajaxResponse(null, true, $extra_data);
}
/**
@@ -133,7 +133,7 @@ if (isset($_REQUEST['get_enum_values']) && $_REQUEST['get_enum_values'] == true)
$dropdown = '<select>' . $dropdown . '</select>';
$extra_data['dropdown'] = $dropdown;
- PMA_ajaxResponse(NULL, true, $extra_data);
+ PMA_ajaxResponse(null, true, $extra_data);
}
/**
@@ -162,7 +162,7 @@ if (isset($_REQUEST['get_set_values']) && $_REQUEST['get_set_values'] == true) {
$select = '<select multiple="multiple" size="' . $select_size . '">' . $select . '</select>';
$extra_data['select'] = $select;
- PMA_ajaxResponse(NULL, true, $extra_data);
+ PMA_ajaxResponse(null, true, $extra_data);
}
/**
@@ -191,7 +191,7 @@ if (isset($_REQUEST['set_col_prefs']) && $_REQUEST['set_col_prefs'] == true) {
}
}
- PMA_ajaxResponse(NULL, ($retval == true));
+ PMA_ajaxResponse(null, ($retval == true));
}
// Default to browse if no query set and we have table
@@ -766,7 +766,7 @@ else {
$row = PMA_DBI_fetch_row($result);
$extra_data = array();
$extra_data['value'] = $row[0];
- PMA_ajaxResponse(NULL, true, $extra_data);
+ PMA_ajaxResponse(null, true, $extra_data);
}
if (isset($_REQUEST['ajax_request']) && isset($_REQUEST['table_maintenance'])) {