diff --git a/src/nhttpd/web/Y_EPG.js b/src/nhttpd/web/Y_EPG.js
index 4cd4a3042..29705fbec 100644
--- a/src/nhttpd/web/Y_EPG.js
+++ b/src/nhttpd/web/Y_EPG.js
@@ -33,6 +33,10 @@ function epg_zapto(){
function epg_set_timer(){
dbox_set_timer($("d_channel_id").innerHTML, $("d_start").innerHTML, $("d_stop").innerHTML);
}
+function set_zapit(){
+ var rec = "/control/timer?action=new&type=3&alarm="+$("d_start").innerHTML+"&channel_id="+$("d_channel_id").innerHTML;
+ var res = loadSyncURL(rec);
+}
function build_epg_clear(){
var ep = $("epg_plus");
obj_clear_all_childs(ep);
@@ -186,10 +190,11 @@ function build_epg_plus_loop(_starttime, _stoptime)
var _bouquet = g_bouquet_list[g_i];
var __channel_name = getXMLNodeItemValue(_bouquet, "name");
var __channel_id = getXMLNodeItemValue(_bouquet, "id");
+ var __short_channel_id = getXMLNodeItemValue(_bouquet, "short_id");
var ep = $("epg_plus");
var __bdiv = obj_createAt(ep, "div", "ep_bouquet");
var __bname_div = obj_createAt(__bdiv, "div", "ep_bouquet_name");
- var ch_name_with_logo= (g_logosURL!="")?"":__channel_name;
+ var ch_name_with_logo= (g_logosURL!="")?"
":__channel_name;
$(__bname_div).update(""+ch_name_with_logo+"");
build_epg_bouquet(__bdiv, __channel_id, _starttime, _stoptime);
window.setTimeout("build_epg_plus_loop("+_starttime+","+_stoptime+")",100);
diff --git a/src/nhttpd/web/Y_EPG_Plus.yhtm b/src/nhttpd/web/Y_EPG_Plus.yhtm
index 046ba9378..e075e7cd9 100644
--- a/src/nhttpd/web/Y_EPG_Plus.yhtm
+++ b/src/nhttpd/web/Y_EPG_Plus.yhtm
@@ -53,7 +53,7 @@ function epg_imdb(){