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:56:37 +0400
committerMadhura Jayaratne <madhura.cj@gmail.com>2012-05-11 20:56:37 +0400
commit35d3e7e1f9930fba881e69abd04cae2d26b7de2b (patch)
tree382c968ba9cc47b36c73fb5cdca43d52ac13e9c5 /tbl_change.php
parent7bc0d5a4ff3158e69caa378ca8e1316cc4adb793 (diff)
Fix function names: PMA_printable_bit_value -> PMA_printableBitValue
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 fb275173f4..aeffff15a0 100644
--- a/tbl_change.php
+++ b/tbl_change.php
@@ -526,7 +526,7 @@ foreach ($rows as $row_id => $vrow) {
$special_chars = '';
$data = $vrow[$field['Field']];
} elseif ($field['True_Type'] == 'bit') {
- $special_chars = PMA_printable_bit_value(
+ $special_chars = PMA_printableBitValue(
$vrow[$field['Field']], $extracted_columnspec['spec_in_brackets']
);
} elseif (in_array($field['True_Type'], $gis_data_types)) {