We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f6641a commit 61d3266Copy full SHA for 61d3266
src/Ifsnop/Mysqldump/Mysqldump.php
@@ -766,7 +766,7 @@ public function __construct()
766
767
public function open($filename)
768
{
769
- $this->archiveFilename = $filename . ".bz2";
+ $this->archiveFilename = $filename;
770
$this->fileHandler = bzopen($this->archiveFilename, "w");
771
if (false === $this->fileHandler) {
772
throw new Exception("Output file is not writable");
@@ -802,7 +802,7 @@ public function __construct()
802
803
804
805
- $this->archiveFilename = $filename . ".gz";
806
$this->fileHandler = gzopen($this->archiveFilename, "wb");
807
808
0 commit comments