diff options
| -rwxr-xr-x | control-center | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/control-center b/control-center index 1dc51d1b..7cb99c6a 100755 --- a/control-center +++ b/control-center @@ -437,7 +437,7 @@ sub get_path { join('', map { my $i = $_; $i =~ s/_//; $i } @_) } # menus do not like "_" from profiles (whereas netprofile does not like spaces in profile names...) sub profile2menu { my ($profile) = @_; - $profile =~ s/_/ /; + $profile =~ s/_/ /g; "/$profile"; } |
