bug #1981043 [export] HTML in exports getting corrupted

This commit is contained in:
Marc Delisle
2008-06-01 12:15:23 +00:00
parent 80b7f58ca2
commit 6554e9893a
2 changed files with 6 additions and 0 deletions

View File

@@ -74,6 +74,8 @@ danbarry
it for sure, thanks to Vladyslav Bakayev - dandy76 it for sure, thanks to Vladyslav Bakayev - dandy76
- bug #1955572 [display] alt text causes duplicated strings - bug #1955572 [display] alt text causes duplicated strings
- bug #1762029 [interface] Cannot upload BLOB into existing row - bug #1762029 [interface] Cannot upload BLOB into existing row
- bug #1981043 [export] HTML in exports getting corrupted,
thanks to Jason Judge - jasonjudge
2.11.6.0 (2008-04-29) 2.11.6.0 (2008-04-29)
- bug #1903724 [interface] Displaying of very large queries in error message - bug #1903724 [interface] Displaying of very large queries in error message

View File

@@ -337,6 +337,10 @@ if ($save_on_server) {
if (!$save_on_server) { if (!$save_on_server) {
if ($asfile) { if ($asfile) {
// Download // Download
// (avoid rewriting data containing HTML with anchors and forms;
// this was reported to happen under Plesk)
ini_set('url_rewriter.tags','');
if (!empty($content_encoding)) { if (!empty($content_encoding)) {
header('Content-Encoding: ' . $content_encoding); header('Content-Encoding: ' . $content_encoding);
} }