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
commit1f3fe82d06dcde25006eb83334ce9455365a1a4e (patch)
tree956ab133e21d959c53e95091dbeb36d1ac4ed26c
parentce07f686cebcb7a577e0ef5092d1682252bf4fea (diff)
downloadvdr-plugin-smarttvweb-1f3fe82d06dcde25006eb83334ce9455365a1a4e.tar.gz
vdr-plugin-smarttvweb-1f3fe82d06dcde25006eb83334ce9455365a1a4e.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;