summaryrefslogtreecommitdiff
path: root/config.c
diff options
context:
space:
mode:
Diffstat (limited to 'config.c')
-rw-r--r--config.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/config.c b/config.c
index 2be9d26..e746c24 100644
--- a/config.c
+++ b/config.c
@@ -22,6 +22,7 @@ cEpgfixerSetup::cEpgfixerSetup()
equalshorttextanddescription = 0;
nobackticks = 0;
components = 0;
+ striphtml = 0;
}
cString cEpgfixerSetup::m_ProcessedArgs;
@@ -59,6 +60,7 @@ bool cEpgfixerSetup::SetupParse(const char *Name, const char *Value)
else if (!strcasecmp(Name, "PreventEqualShortTextAndDescription")) equalshorttextanddescription = atoi(Value);
else if (!strcasecmp(Name, "ReplaceBackticksWithSingleQuotes")) nobackticks = atoi(Value);
else if (!strcasecmp(Name, "FixStreamComponentDescriptions")) components = atoi(Value);
+ else if (!strcasecmp(Name, "StripHTMLentities")) striphtml = atoi(Value);
else
return false;