Bug fixes by Joe Zhou
authorJamie Cameron <jcameron@webmin.com>
Sat, 7 Nov 2009 01:28:08 +0000 (17:28 -0800)
committerJamie Cameron <jcameron@webmin.com>
Sat, 7 Nov 2009 01:28:08 +0000 (17:28 -0800)
bacula-backup/CHANGELOG
bacula-backup/bacula-backup-lib.pl

index 688526d..73ab4b4 100644 (file)
@@ -7,3 +7,5 @@ Added a field to the mount/un-mount page for entering an auto-loader slot number
 Backup schedules with Level= and Pool= tags are now properly displayed and editable.
 ---- Changes since 1.440 ----
 Added a missing program so that mass deletion of storage devices works.
+---- Changes since 1.490 ----
+Fixed fileset exlude list and 'Run at times' display, thanks to a patch by Joe Zhou.
index e5fee73..8b79853 100755 (executable)
@@ -354,7 +354,7 @@ foreach my $c (@$conf) {
        $c->{'eline'} += $offset if ($c->{'eline'} > $line &&
                                     $c->{'file'} eq $file);
        if ($c->{'type'}) {
-               &renumber($c->{'members'}, $line, $offset);
+               &renumber($c->{'members'}, $line, $offset, $file);
                }
        }
 local $parent = $config_file_parent_cache{$file};
@@ -1595,7 +1595,7 @@ return undef;
 sub extract_schedule
 {
 local ($run) = @_;
-local $tags;
+local %tags;
 while($run =~ s/^(\S+)=(\S+)\s+//) {
        $tags{$1} = $2;
        }