Move comment

This commit is contained in:
Jakub Vrana 2013-04-04 09:44:48 -07:00
parent 190812456f
commit aba9d23ba2
2 changed files with 1 additions and 1 deletions

View file

@ -574,7 +574,6 @@ username.form['auth[driver]'].onchange();
if (function_exists('bzcompress')) { if (function_exists('bzcompress')) {
$return['bz2'] = 'bzip2'; $return['bz2'] = 'bzip2';
} }
// ZipArchive requires temporary file, ZIP can be created by gzcompress - see PEAR File_Archive
return $return; return $return;
} }

View file

@ -19,6 +19,7 @@ class AdminerDumpZip {
} }
function _zip($string, $state) { function _zip($string, $state) {
// ZIP can be created without temporary file by gzcompress - see PEAR File_Archive
$this->data .= $string; $this->data .= $string;
if ($state & PHP_OUTPUT_HANDLER_END) { if ($state & PHP_OUTPUT_HANDLER_END) {
$zip = new ZipArchive; $zip = new ZipArchive;