.bz files are not listed in Saved Backups

Solution:
In function _backup_migrate_filetypes() this

    "bzip" => array(
      "extension"     => ".gz",
      "filemime"      => "application/x-bzip",
    ),

should be changed to

    "bzip" => array(
      "extension"     => ".bz",
      "filemime"      => "application/x-bzip",
    ),

Comments

lmakarov’s picture

BTW,

Thanks for this wonderful module! I was using my custom script to store last 24h compressed DB dump.
You module is just what I needed and it has great UI features.

Thanks again!

Anonymous’s picture

Status: Active » Fixed

I also had this problem.

Same way to fix it. I'll assign it to fixed until someone else proves us wrong ;)

ronan’s picture

Status: Fixed » Closed (fixed)

patch commited... thanks to inqui, xushi and rene_w for the sleuthing, patching and testing

r