diff options
author | Dylan William Hardison <dylan@hardison.net> | 2016-10-19 15:03:24 +0200 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2016-10-19 15:03:24 +0200 |
commit | 69f1ef63c92000717c1d3c4b267d6d8517eb6420 (patch) | |
tree | 4ca8caa1404a6188e64aa96b31ca02dec00aabf9 /Bugzilla | |
parent | 14ee84314a54c530f7a71420334c978c43cebeb3 (diff) | |
download | bugzilla-69f1ef63c92000717c1d3c4b267d6d8517eb6420.tar.gz bugzilla-69f1ef63c92000717c1d3c4b267d6d8517eb6420.tar.xz |
Revert "Bug 1306534 - Crash when pasting UTF8 text as an attachment"
This reverts commit f1b9ed5d96a4738471559c9a275eabc4333d74f4.
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Attachment.pm | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Bugzilla/Attachment.pm b/Bugzilla/Attachment.pm index 5a7a50e59..ec318b021 100644 --- a/Bugzilla/Attachment.pm +++ b/Bugzilla/Attachment.pm @@ -891,7 +891,6 @@ sub create { (id, thedata) VALUES ($attachid, ?)"); trick_taint($data); - utf8::encode($data); $sth->bind_param(1, $data, $dbh->BLOB_TYPE); $sth->execute(); |