diff options
author | horchi <vdr@jwendel.de> | 2018-02-16 18:59:40 +0100 |
---|---|---|
committer | horchi <vdr@jwendel.de> | 2018-02-16 18:59:40 +0100 |
commit | b2fb1c3c3b33ce7d7e4e88e02f29bb6aabad5d00 (patch) | |
tree | a5f36fe231022a7954f2edbd7cf0eec37ddac19b /webdo.c | |
parent | f91afbf2343fb96ce30628243e97c4a99bfee6da (diff) | |
parent | 53d4aa03a6190d5fd9e055c9814374edae0fafe7 (diff) | |
download | vdr-epg-daemon-b2fb1c3c3b33ce7d7e4e88e02f29bb6aabad5d00.tar.gz vdr-epg-daemon-b2fb1c3c3b33ce7d7e4e88e02f29bb6aabad5d00.tar.bz2 |
Merge branch 'master' of projects.vdr-developer.org:vdr-epg-daemon
* 'master' of projects.vdr-developer.org:vdr-epg-daemon:
updated configs/eventsview-ck.sql
2018-02-14: version 1.1.134 (horchi)\n - bugfix: Fixed handling of timer type change by WEBIF\n\n
2018-02-14: version 1.1.133 (horchi)\n - bugfix: Fixed display of external timer in WEBIF lists\n\n
2018-02-10: version 1.1.132 (rechner)\n - chanhed: text for swichtimer and highlight recIcon on success\n\n
Diffstat (limited to 'webdo.c')
-rw-r--r-- | webdo.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1547,13 +1547,13 @@ int cEpgHttpd::doTimers(MHD_Connection* tcp, json_t* obj) // state / action - if (!isEmpty(action) && !strchr(action, *timerDb->getStrValue("ACTION"))) + if (!isEmpty(action) && !strchr(action, toupper(*timerDb->getStrValue("ACTION")))) continue; if (!isEmpty(state)&& !strchr(state, *timerDb->getStrValue("STATE"))) continue; - if (!isEmpty(naction) && strchr(naction, *timerDb->getStrValue("ACTION"))) + if (!isEmpty(naction) && strchr(naction, toupper(*timerDb->getStrValue("ACTION")))) continue; if (!isEmpty(nstate) && strchr(nstate, *timerDb->getStrValue("STATE"))) |