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>2012-05-11 20:21:04 +0400
committerMadhura Jayaratne <madhura.cj@gmail.com>2012-05-11 20:21:04 +0400
commit547880aad20c83e280c9ccb4c437f5813cce4ed5 (patch)
tree01527771c84b8c3ed655e03aa4e474f94190ce89 /tbl_change.php
parentc66c4fa211814fb0da6cb3c7c6ce826017368583 (diff)
Fix function names: PMA_convert_bit_default_value -> PMA_convertBitDefaultValue
Diffstat (limited to 'tbl_change.php')
-rw-r--r--tbl_change.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tbl_change.php b/tbl_change.php
index d6b46b51a4..fb275173f4 100644
--- a/tbl_change.php
+++ b/tbl_change.php
@@ -576,7 +576,7 @@ foreach ($rows as $row_id => $vrow) {
$data = $field['Default'];
}
if ($field['True_Type'] == 'bit') {
- $special_chars = PMA_convert_bit_default_value($field['Default']);
+ $special_chars = PMA_convertBitDefaultValue($field['Default']);
} else {
$special_chars = htmlspecialchars($field['Default']);
}