mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-04-08 13:24:56 +00:00
01_FHEMWEB.pm: Allow %20 for space in the column attribute (Forum #33612)
git-svn-id: https://svn.fhem.de/fhem/trunk@7956 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
f2be3a2288
commit
97f7e0ef46
@ -1,4 +1,4 @@
|
||||
##############################################
|
||||
#lt#############################################
|
||||
# $Id$
|
||||
package main;
|
||||
|
||||
@ -1461,6 +1461,7 @@ FW_parseColumns()
|
||||
$colNo = 1;
|
||||
foreach my $groups (split(/\|/,$groupcolumn)) {
|
||||
foreach my $group (split(",",$groups)) {
|
||||
$group =~ s/%20/ /g; # Forum #33612
|
||||
$columns{$group} = $colNo;
|
||||
}
|
||||
$colNo++;
|
||||
|
Loading…
x
Reference in New Issue
Block a user