summaryrefslogtreecommitdiff
path: root/pages/switch_channel.ecpp
diff options
context:
space:
mode:
Diffstat (limited to 'pages/switch_channel.ecpp')
-rw-r--r--pages/switch_channel.ecpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/pages/switch_channel.ecpp b/pages/switch_channel.ecpp
index d31bcfc..3297793 100644
--- a/pages/switch_channel.ecpp
+++ b/pages/switch_channel.ecpp
@@ -8,18 +8,18 @@ using namespace vdrlive;
</%pre>
<%args>
- tChannelID channelid;
+ tChannelID param;
</%args>
<%cpp>
reply.setContentType( "application/xml" );
- SwitchChannelTask task( channelid );
+ SwitchChannelTask task( param );
LiveTaskManager().Execute( task );
</%cpp>
<?xml version="1.0"?>
<service>
<request name="switch_channel">
-<param name="channel"><$ *channelid.ToString() $></param>
+<param name="channel"><$ *param.ToString() $></param>
</request>
<response><$ task.Result() $></response>
<error><$ task.Error() $></error>