mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-01-31 12:49:34 +00:00
bugfix pgm3: FHT-Pull-Down must be filled
git-svn-id: https://svn.fhem.de/fhem/trunk@461 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
881a6bd0eb
commit
25f3b60e62
@ -536,3 +536,4 @@
|
||||
- bugfix: loosing data when sending FS20 messages in a group
|
||||
- bugfix: better handling of disconnected CUN
|
||||
- feature: softfhtbuffer added to CUL
|
||||
- bugfix: pgm3: Pulldown-Menu without selected FHTDEV not possible any more
|
||||
|
@ -433,3 +433,6 @@
|
||||
|
||||
- Sun Oct11 2009 (Boris)
|
||||
- finalized 09_BS.pm and documentation
|
||||
|
||||
- Tue Nov10 2009 (Martin Haas)
|
||||
- Bugfix: pgm3: Pulldown-Menu without selected FHTDEV not possible any more
|
||||
|
@ -183,3 +183,7 @@ It is not necessary to tell fhem that there are other logs.
|
||||
2009-03-26
|
||||
-- Bugfix: table-format for userdefs changed, small optical changes for userdef
|
||||
-- Feature: HMS100CO added
|
||||
|
||||
2009-11-10
|
||||
-- Bugfix: Pulldown-Menu without selected FTDEV not possible any more
|
||||
Changed: index.php. Check for selcted dhtdev
|
||||
|
@ -83,3 +83,6 @@
|
||||
-- Bugfix: table-format for userdefs changed
|
||||
-- Feature: taillogorder optional with date (config.php)
|
||||
-- Feature: HMS100CO added
|
||||
|
||||
- Martin 2009-11-10
|
||||
-- Bugfix: Pulldown-Menu without selected FTDEV not possible any more
|
||||
|
@ -6,7 +6,7 @@
|
||||
#
|
||||
# Copyright notice
|
||||
#
|
||||
# (c) 2006 2007 2008 Copyright: Martin Haas (fhz@martin-haas.de)
|
||||
# (c) 2006-2009 Copyright: Martin Haas (fhz@martin-haas.de)
|
||||
# All rights reserved
|
||||
#
|
||||
# This script is free software; you can redistribute it and/or modify
|
||||
@ -41,8 +41,7 @@ include "include/gnuplot.php";
|
||||
include "include/functions.php";
|
||||
|
||||
|
||||
$pgm3version='090326';
|
||||
|
||||
$pgm3version='091110';
|
||||
|
||||
$Action = $_POST['Action'];
|
||||
$order = $_POST['order'];
|
||||
@ -197,6 +196,7 @@ switch ($Action):
|
||||
Case exec3:
|
||||
if ($atorder=='at')
|
||||
{ $atorder='define '.randdefine().' '.$atorder; }
|
||||
if (! isset($fhtdev)) {echo "FHT-Device not set - exit"; break;}
|
||||
$order="$atorder $attime set $fhtdev $orderpulldown $valuetime";
|
||||
if ($kioskmode=='off') execFHZ($order,$fhz1000,$fhz1000port);
|
||||
Case execfht:
|
||||
@ -211,7 +211,6 @@ switch ($Action):
|
||||
endswitch;
|
||||
|
||||
|
||||
|
||||
if (! isset($showroom)) $showroom="ALL";
|
||||
if (($taillog==1) and (isset ($showhist)) ) exec($taillogorder,$tailoutput);
|
||||
|
||||
@ -254,6 +253,7 @@ $output=array();
|
||||
|
||||
$version = explode('.', phpversion());
|
||||
|
||||
|
||||
if ( $version[0] == 4 )
|
||||
{
|
||||
$xmllist="$fhz1000_pl $fhz1000port xmllist";
|
||||
|
Loading…
Reference in New Issue
Block a user