diff options
author | Christian Wieninger <cwieninger (at) gmx (dot) de> | 2008-03-22 13:31:47 +0100 |
---|---|---|
committer | Christian Wieninger <cwieninger (at) gmx (dot) de> | 2008-03-22 13:31:47 +0100 |
commit | 027f859c2c3ddbe3906d98599f8d1e2d18ecbe39 (patch) | |
tree | e2bd6fecaebed61ada51af1958f1609a9842a2fc /epgsearch.c | |
parent | f4b7a6023a61c7a1300896b84c3569d985551046 (diff) | |
download | vdr-plugin-epgsearch-027f859c2c3ddbe3906d98599f8d1e2d18ecbe39.tar.gz vdr-plugin-epgsearch-027f859c2c3ddbe3906d98599f8d1e2d18ecbe39.tar.bz2 |
support for [epgsearchcats] in conf.d and small fixes
Diffstat (limited to 'epgsearch.c')
-rw-r--r-- | epgsearch.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/epgsearch.c b/epgsearch.c index 84fa052..f942a6f 100644 --- a/epgsearch.c +++ b/epgsearch.c @@ -437,6 +437,11 @@ bool cPluginEpgsearch::Start(void) gl_timerStatusMonitor = new cTimerStatusMonitor; SearchExtCats.Load(AddDirectory(CONFIGDIR, "epgsearchcats.conf"), true); + + LoadMenuTemplates(); + LoadUserVars(); + LoadConfD(); + ChannelGroups.Load(AddDirectory(CONFIGDIR, "epgsearchchangrps.conf"), true); Blacklists.Load(AddDirectory(CONFIGDIR, "epgsearchblacklists.conf")); SearchExts.Load(AddDirectory(CONFIGDIR, "epgsearch.conf")); @@ -447,10 +452,6 @@ bool cPluginEpgsearch::Start(void) DefTimerCheckModes.Load(AddDirectory(CONFIGDIR, "deftimerchkmodes.conf")); TimersDone.Load(AddDirectory(CONFIGDIR, "timersdone.conf")); - LoadMenuTemplates(); - LoadUserVars(); - LoadConfD(); - cSearchTimerThread::Init(this); cSwitchTimerThread::Init(); cConflictCheckThread::Init(this); |