Topic: After successful Backup, loader.gif still present

Setup => Backup/Restore => Backup successfully generated. ....

The themes/default/images/ajax-loader.gif image is still present. It needs to be removed during the ajax call that states the backup was successful.

Re: After successful Backup, loader.gif still present

The fix for this is lines 134-138 in admin/backups.php:

if (get_post('creat')) {
    generate_backup($conn, get_post('comp'), get_post('comments'));
    $Ajax->activate('backups');
};

should be:

if (get_post('creat')) {
    generate_backup($conn, get_post('comp'), get_post('comments'));
    $Ajax->activate('backups');
    $SysPrefs->refresh(); // re-read system setup
};

@joe: can commit this.
Committed.