2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 06:39:11 +00:00

Allow using tabs in attr global (bugfix by Michael)

git-svn-id: https://svn.fhem.de/fhem/trunk@937 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2011-07-08 12:14:12 +00:00
parent 79534d2860
commit 9b62b2088b
3 changed files with 4 additions and 4 deletions

View File

@ -109,7 +109,7 @@
the changes will disappear after the next start.
<li>The CUL is arriving without a firmware. You can flash it via the
<a href="commandref.html#CULflash">CULflash</a> command, if the
dfu-programmer is installed. dfu-programmer is part of the FB390 image.
dfu-programmer is installed. dfu-programmer is part of the FB7390 image.
</ul>
</ul>

View File

@ -65,7 +65,7 @@
Current Version: (as of =DATE=):
<a href="http://fhem.de/fhem-=VERS=.tar.gz">fhem-=VERS=.tar.gz</a>,
<a href="http://fhem.de/fhem-=VERS=.deb">fhem-=VERS=.deb</a> or
<a href="http://fhem.de/fhem-=VERS=-fb7390.image">fhem-=VERS=-fb7390.image</a> or
<a href="http://fhem.de/fhem-=VERS=-fb7390.image">fhem-=VERS=-fb7390.image</a>
<br>
See the <a href="CHANGED">CHANGED</a> file for current changes.
<br>

View File

@ -167,7 +167,7 @@ my $nextat; # Time when next timer will be triggered.
my $intAtCnt=0;
my %duplicate; # Pool of received msg for multi-fhz/cul setups
my $duplidx=0; # helper for the above pool
my $cvsid = '$Id: fhem.pl,v 1.145 2011-07-07 08:46:28 rudolfkoenig Exp $';
my $cvsid = '$Id: fhem.pl,v 1.146 2011-07-08 12:14:12 rudolfkoenig Exp $';
my $namedef =
"where <name> is either:\n" .
"- a single device name\n" .
@ -2525,7 +2525,7 @@ setGlobalAttrBeforeFork()
open(FH, $f) || die("Cant open $f: $!\n");
while(my $l = <FH>) {
chomp($l);
next if($l !~ m/^attr +global +([^ ]+) +(.*)$/);
next if($l !~ m/^attr\s+global\s+([^\s]+)\s+(.*)$/);
my ($n,$v) = ($1,$2);
$v =~ s/#.*//;
$v =~ s/ .*$//;