diff options
-rw-r--r-- | NEWS | 2 | ||||
-rwxr-xr-x | draksnapshot-config | 10 |
2 files changed, 8 insertions, 4 deletions
@@ -1,3 +1,5 @@ +- do not delete interval lines since they can no longer be set (#58534) + Version 0.20.3 - 26 May 2010 - translation updates diff --git a/draksnapshot-config b/draksnapshot-config index 4563760..c389bcf 100755 --- a/draksnapshot-config +++ b/draksnapshot-config @@ -285,10 +285,12 @@ sub add { } sub save() { - save_keyword('interval', map { - my $val = $entries{$_}->get_text; - if_($val, join("\t", 'interval', $_, $val)); - } @ordered_intervals); + # $entries are currently not added to window so $val will always be 0 + # As there is no way currently to change interval, the best is to not rewrite them (#58534) +# save_keyword('interval', map { +# my $val = $entries{$_}->get_text; +# if_($val, join("\t", 'interval', $_, $val)); +# } @ordered_intervals); if (!$button->get('sensitive')) { # Mandriva defaults @{$backup_list->{data}} = '/'; #qw(/bin /boot /etc /home /lib /lib64 /opt); |