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:
authorMichal Čihař <michal@cihar.com>2016-07-22 17:39:12 +0300
committerMichal Čihař <michal@cihar.com>2016-07-22 17:39:12 +0300
commit76e87c3e336b5e0a9c53dd6e0eec5ddc0508c868 (patch)
tree906126964fc518ce61e05d3cb2a5afad2dde2226 /tbl_get_field.php
parent99903101d9ce64fe52b650ad820f959badbaa3b6 (diff)
Do not use mb_strlen on data we know are bytes
Issue #12397 Signed-off-by: Michal Čihař <michal@cihar.com>
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 3e21c870aa..95f8b67b43 100644
--- a/tbl_get_field.php
+++ b/tbl_get_field.php
@@ -52,6 +52,6 @@ if ($result === false) {
PMA_downloadHeader(
$table . '-' . $_GET['transform_key'] . '.bin',
PMA_detectMIME($result),
- mb_strlen($result, '8bit')
+ strlen($result)
);
echo $result;