From e0b228930dea79088cd6fdc69f636eef3b8fa7f1 Mon Sep 17 00:00:00 2001 From: Eric Bollengier Date: Mon, 18 Apr 2011 21:00:19 +0200 Subject: [PATCH] bweb: Fix configuration loading problem --- gui/bweb/lib/Bweb.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/bweb/lib/Bweb.pm b/gui/bweb/lib/Bweb.pm index b938c19fc7..bdafca9e5e 100644 --- a/gui/bweb/lib/Bweb.pm +++ b/gui/bweb/lib/Bweb.pm @@ -305,7 +305,7 @@ sub load # keep a backup of the original config foreach my $k (keys %$VAR1) { if (exists $k_re{$k} and defined $VAR1->{$k}) { - $self->{main_conf}->{$k} = $VAR1->{$k}; + $self->{$k} = $VAR1->{$k}; } } return 1; -- 2.39.5