mirror of
https://github.com/munin-monitoring/contrib.git
synced 2025-07-25 02:18:08 +00:00
Unify file encodings to UTF8
This commit is contained in:
parent
3674882662
commit
3bc9396918
21 changed files with 24 additions and 24 deletions
|
@ -126,7 +126,7 @@ sub save_data {
|
|||
|
||||
# Push the hash values on to the array
|
||||
foreach ( keys %$hashref ) {
|
||||
push @save_vector, $_ . '¬' . $hashref->{$_};
|
||||
push @save_vector, $_ . '¬' . $hashref->{$_};
|
||||
}
|
||||
|
||||
$::logger->info(
|
||||
|
@ -148,7 +148,7 @@ sub load_data {
|
|||
|
||||
my $hashref;
|
||||
foreach (@save_vector) {
|
||||
my ( $key, $value ) = split /¬/;
|
||||
my ( $key, $value ) = split /¬/;
|
||||
$hashref->{$key} = $value;
|
||||
}
|
||||
my $force_save = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue