use new variables
This commit is contained in:
@@ -443,8 +443,10 @@ if ($num_tables > 0) {
|
|||||||
<?php
|
<?php
|
||||||
// gzip and bzip2 encode features
|
// gzip and bzip2 encode features
|
||||||
if (PMA_INT_VERSION >= 40004) {
|
if (PMA_INT_VERSION >= 40004) {
|
||||||
$is_gzip = @function_exists('gzencode');
|
$is_gzip = (isset($cfgGZipDump) &&
|
||||||
$is_bzip = @function_exists('bzcompress');
|
$cfgGZipDump && @function_exists('gzencode'));
|
||||||
|
$is_bzip = (isset($cfgBZipDump) &&
|
||||||
|
$cfgBZipDump && @function_exists('bzcompress'));
|
||||||
if ($is_gzip || $is_bzip) {
|
if ($is_gzip || $is_bzip) {
|
||||||
echo "\n" . ' (';
|
echo "\n" . ' (';
|
||||||
if ($is_gzip) {
|
if ($is_gzip) {
|
||||||
|
Reference in New Issue
Block a user