From: Andreas Ă–man Date: Sat, 3 May 2008 06:04:55 +0000 (+0000) Subject: Use buttons instead of -tags X-Git-Tag: 2.12~1043 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e84a00ce0737727196b42e2e70909bf19b6d3c79;p=thirdparty%2Ftvheadend.git Use buttons instead of -tags --- diff --git a/ajaxui/ajaxui_config_channels.c b/ajaxui/ajaxui_config_channels.c index 0069b3d23..ac874dcff 100644 --- a/ajaxui/ajaxui_config_channels.c +++ b/ajaxui/ajaxui_config_channels.c @@ -444,15 +444,16 @@ ajax_cheditor(http_connection_t *hc, http_reply_t *hr, tcp_qprintf(tq, "
\r\n"); tcp_qprintf(tq, "
"); - ajax_a_jsfuncf(tq, "Rename channel...", - "channel_rename('%d', '%s');", - ch->ch_tag, ch->ch_name); - tcp_qprintf(tq, " / "); + tcp_qprintf(tq, + "", + ch->ch_tag, ch->ch_name); - ajax_a_jsfuncf(tq, "Delete channel...", - "channel_delete('%d', '%s');", - ch->ch_tag, ch->ch_name); + tcp_qprintf(tq, + "", + ch->ch_tag, ch->ch_name); tcp_qprintf(tq, "
");