bug #3305517 [config] Config for export compression not used

This commit is contained in:
Madhura Jayaratne
2011-05-22 13:00:39 +05:30
parent f5eaf8c7d8
commit 16305005c5
2 changed files with 4 additions and 1 deletions

View File

@@ -6,6 +6,7 @@
- bug #3303869 [interface] Unnecessary scrolling on Databases page - bug #3303869 [interface] Unnecessary scrolling on Databases page
- patch #3303813 [setup] Define a label that was missing - patch #3303813 [setup] Define a label that was missing
- bug #3305606 [interface] Show all button wraps on privileges page - bug #3305606 [interface] Show all button wraps on privileges page
- bug #3305517 [config] Config for export compression not used
3.4.1.0 (2011-05-20) 3.4.1.0 (2011-05-20)
- bug #3301108 [interface] Synchronize and already configured host - bug #3301108 [interface] Synchronize and already configured host

View File

@@ -296,7 +296,9 @@ if(isset($_GET['sql_query'])) {
?> ?>
<?php <?php
if(isset($_GET['compression'])) { if(isset($_GET['compression'])) {
$selected_compression = $_GET['compression']; $selected_compression = $_GET['compression'];
} elseif (isset($cfg['Export']['compression'])) {
$selected_compression = $cfg['Export']['compression'];
} else { } else {
$selected_compression = "none"; $selected_compression = "none";
} }