summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorthlo <smarttv640@gmail.com>2013-07-29 22:10:14 +0200
committerthlo <smarttv640@gmail.com>2013-07-29 22:10:14 +0200
commit3bae8dea48f9f558ef8f9f3cb13f428c8cdb963d (patch)
tree956ab133e21d959c53e95091dbeb36d1ac4ed26c
parenteb178d3bac7efc214fd3e372918cd4cecb70a917 (diff)
downloadvdr-plugin-smarttvweb-3bae8dea48f9f558ef8f9f3cb13f428c8cdb963d.tar.gz
vdr-plugin-smarttvweb-3bae8dea48f9f558ef8f9f3cb13f428c8cdb963d.tar.bz2
changed from deleteTime.xml to deleteTimer (no .xml) and same for addTimer
-rwxr-xr-xhttpresource.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/httpresource.c b/httpresource.c
index 545e7ba..2832d5b 100755
--- a/httpresource.c
+++ b/httpresource.c
@@ -340,14 +340,14 @@ int cHttpResource::processRequest() {
}
//thlo for testing purpose
- if (mPath.compare("/deleteTimer.xml") == 0) {
+ if (mPath.compare("/deleteTimer") == 0) {
mResponse = new cResponseMemBlk(this);
((cResponseMemBlk*)mResponse)->receiveDelTimerReq();
return OKAY;
}
//thlo for testing purpose
- if (mPath.compare("/addTimer.xml") == 0) {
+ if (mPath.compare("/addTimer") == 0) {
mResponse = new cResponseMemBlk(this);
((cResponseMemBlk*)mResponse)->receiveAddTimerReq();
return OKAY;