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:58:26 +0400
committerMadhura Jayaratne <madhura.cj@gmail.com>2012-05-11 20:58:26 +0400
commitf50a2deb4b75527262799257558893fd9dc4dd93 (patch)
treeda5d25c759938bfb764e74d848a89ba9036d7305 /tbl_change.php
parent35d3e7e1f9930fba881e69abd04cae2d26b7de2b (diff)
Fix function names: PMA_replace_binary_contents -> PMA_replaceBinaryContents
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 aeffff15a0..e60185e0d6 100644
--- a/tbl_change.php
+++ b/tbl_change.php
@@ -540,7 +540,7 @@ foreach ($rows as $row_id => $vrow) {
$vrow[$field['Field']] = bin2hex($vrow[$field['Field']]);
$field['display_binary_as_hex'] = true;
} else {
- $vrow[$field['Field']] = PMA_replace_binary_contents($vrow[$field['Field']]);
+ $vrow[$field['Field']] = PMA_replaceBinaryContents($vrow[$field['Field']]);
}
} // end if
$special_chars = htmlspecialchars($vrow[$field['Field']]);