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:
authorMarc Delisle <marc@infomarc.info>2015-07-01 00:12:23 +0300
committerMarc Delisle <marc@infomarc.info>2015-07-01 00:12:23 +0300
commit66b4be9b746da0c00d73959be8f892a2a5edbeee (patch)
treeeadbd0bb48f71040fafbc34f2dedff0c96c9df65 /tbl_get_field.php
parentb956fe723623f99cc21a608c9cb0ff255ffb8550 (diff)
bug #4972 Incorrect length computed for binary data
Signed-off-by: Marc Delisle <marc@infomarc.info>
Diffstat (limited to 'tbl_get_field.php')
-rw-r--r--tbl_get_field.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tbl_get_field.php b/tbl_get_field.php
index 1ec3c5a8f9..f4570ebac1 100644
--- a/tbl_get_field.php
+++ b/tbl_get_field.php
@@ -49,7 +49,7 @@ if ($result === false) {
PMA_downloadHeader(
$table . '-' . $_GET['transform_key'] . '.bin',
PMA_detectMIME($result),
- /*overload*/mb_strlen($result)
+ /*overload*/mb_strlen($result, '8bit')
);
echo $result;
?>