diff --git a/src/nhttpd/tuxboxapi/coolstream/controlapi.cpp b/src/nhttpd/tuxboxapi/coolstream/controlapi.cpp
index 01ac27fd1..38595342b 100644
--- a/src/nhttpd/tuxboxapi/coolstream/controlapi.cpp
+++ b/src/nhttpd/tuxboxapi/coolstream/controlapi.cpp
@@ -1479,14 +1479,15 @@ void CControlAPI::SendTimersXML(CyhookHandler *hh)
std::string zRep = NeutrinoAPI->timerEventRepeat2Str(timer->eventRepeat);
std::string zRepCount;
if (timer->eventRepeat == CTimerd::TIMERREPEAT_ONCE)
- zRepCount = "no";
+ zRepCount = "-";
else
zRepCount = (timer->repeatCount == 0) ? "∞" : string_printf("%dx",timer->repeatCount);
hh->printf("\t\t\t%s\n",zRepCount.c_str());
- hh->printf("\t\t\t%d\n",(int)timer->eventRepeat);
+ hh->printf("\t\t\t%d\n",(int)timer->eventRepeat);
+ hh->printf("\t\t\t%s\n",zRep.c_str());
char weekdays[8]={0};
NeutrinoAPI->Timerd->setWeekdaysToStr(timer->eventRepeat, weekdays);
- hh->printf("\t\t\t%s\n",weekdays);
+ hh->printf("\t\t\t%s\n",weekdays);
// channel infos
std::string channel_name = NeutrinoAPI->GetServiceName(timer->channel_id);