From 28fca9521b797ec91f20e14ea5573aa6c50842b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20=C3=96man?= Date: Sat, 18 Jul 2009 08:30:56 +0000 Subject: [PATCH] Fix a problem when entering DVB mux symbolrate manually. --- src/webui/extjs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/webui/extjs.c b/src/webui/extjs.c index 69db8933..a0eb5296 100644 --- a/src/webui/extjs.c +++ b/src/webui/extjs.c @@ -1435,7 +1435,7 @@ extjs_dvb_addmux(http_connection_t *hc, const char *remain, void *opaque) err = dvb_mux_add_by_params(tda, atoi(http_arg_get(args, "frequency")?:"-1"), - atoi(http_arg_get(args, "symbolrateID")?: "-1"), + atoi(http_arg_get(args, "symbolrate")?: "-1"), atoi(http_arg_get(args, "bandwidthID")?: "-1"), atoi(http_arg_get(args, "constellationID")?: "-1"), atoi(http_arg_get(args, "tmodeID")?: "-1"),