mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-04-30 05:57:08 +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: loosing data when sending FS20 messages in a group
|
||||||
- bugfix: better handling of disconnected CUN
|
- bugfix: better handling of disconnected CUN
|
||||||
- feature: softfhtbuffer added to CUL
|
- feature: softfhtbuffer added to CUL
|
||||||
|
- bugfix: pgm3: Pulldown-Menu without selected FHTDEV not possible any more
|
||||||
|
@ -433,3 +433,6 @@
|
|||||||
|
|
||||||
- Sun Oct11 2009 (Boris)
|
- Sun Oct11 2009 (Boris)
|
||||||
- finalized 09_BS.pm and documentation
|
- 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
|
2009-03-26
|
||||||
-- Bugfix: table-format for userdefs changed, small optical changes for userdef
|
-- Bugfix: table-format for userdefs changed, small optical changes for userdef
|
||||||
-- Feature: HMS100CO added
|
-- 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
|
-- Bugfix: table-format for userdefs changed
|
||||||
-- Feature: taillogorder optional with date (config.php)
|
-- Feature: taillogorder optional with date (config.php)
|
||||||
-- Feature: HMS100CO added
|
-- Feature: HMS100CO added
|
||||||
|
|
||||||
|
- Martin 2009-11-10
|
||||||
|
-- Bugfix: Pulldown-Menu without selected FTDEV not possible any more
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
#
|
#
|
||||||
# Copyright notice
|
# 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
|
# All rights reserved
|
||||||
#
|
#
|
||||||
# This script is free software; you can redistribute it and/or modify
|
# This script is free software; you can redistribute it and/or modify
|
||||||
@ -41,8 +41,7 @@ include "include/gnuplot.php";
|
|||||||
include "include/functions.php";
|
include "include/functions.php";
|
||||||
|
|
||||||
|
|
||||||
$pgm3version='090326';
|
$pgm3version='091110';
|
||||||
|
|
||||||
|
|
||||||
$Action = $_POST['Action'];
|
$Action = $_POST['Action'];
|
||||||
$order = $_POST['order'];
|
$order = $_POST['order'];
|
||||||
@ -197,6 +196,7 @@ switch ($Action):
|
|||||||
Case exec3:
|
Case exec3:
|
||||||
if ($atorder=='at')
|
if ($atorder=='at')
|
||||||
{ $atorder='define '.randdefine().' '.$atorder; }
|
{ $atorder='define '.randdefine().' '.$atorder; }
|
||||||
|
if (! isset($fhtdev)) {echo "FHT-Device not set - exit"; break;}
|
||||||
$order="$atorder $attime set $fhtdev $orderpulldown $valuetime";
|
$order="$atorder $attime set $fhtdev $orderpulldown $valuetime";
|
||||||
if ($kioskmode=='off') execFHZ($order,$fhz1000,$fhz1000port);
|
if ($kioskmode=='off') execFHZ($order,$fhz1000,$fhz1000port);
|
||||||
Case execfht:
|
Case execfht:
|
||||||
@ -211,7 +211,6 @@ switch ($Action):
|
|||||||
endswitch;
|
endswitch;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
if (! isset($showroom)) $showroom="ALL";
|
if (! isset($showroom)) $showroom="ALL";
|
||||||
if (($taillog==1) and (isset ($showhist)) ) exec($taillogorder,$tailoutput);
|
if (($taillog==1) and (isset ($showhist)) ) exec($taillogorder,$tailoutput);
|
||||||
|
|
||||||
@ -254,6 +253,7 @@ $output=array();
|
|||||||
|
|
||||||
$version = explode('.', phpversion());
|
$version = explode('.', phpversion());
|
||||||
|
|
||||||
|
|
||||||
if ( $version[0] == 4 )
|
if ( $version[0] == 4 )
|
||||||
{
|
{
|
||||||
$xmllist="$fhz1000_pl $fhz1000port xmllist";
|
$xmllist="$fhz1000_pl $fhz1000port xmllist";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user