diff options
author | Jochen Dolze <vdr@dolze.de> | 2011-08-07 13:20:12 +0200 |
---|---|---|
committer | Jochen Dolze <vdr@dolze.de> | 2011-08-07 13:20:12 +0200 |
commit | 386d79ca0362dddfac21c88bab96903acdb82880 (patch) | |
tree | 056f04f917d40407f2b28272e5cc8687b1f0df00 /dist/epgdata2xmltv | |
parent | 8f13f082303ae844d8408b78c8c8fa4c5c9b1d26 (diff) | |
download | vdr-plugin-xmltv2vdr-386d79ca0362dddfac21c88bab96903acdb82880.tar.gz vdr-plugin-xmltv2vdr-386d79ca0362dddfac21c88bab96903acdb82880.tar.bz2 |
Fixed wrong content-type in epgdata2xmltv (cp1252 instead of latin1)
Diffstat (limited to 'dist/epgdata2xmltv')
-rw-r--r-- | dist/epgdata2xmltv/epgdata2xmltv.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dist/epgdata2xmltv/epgdata2xmltv.cpp b/dist/epgdata2xmltv/epgdata2xmltv.cpp index d825833..de07b38 100644 --- a/dist/epgdata2xmltv/epgdata2xmltv.cpp +++ b/dist/epgdata2xmltv/epgdata2xmltv.cpp @@ -363,7 +363,7 @@ int cepgdata2xmltv::Process(int argc, char *argv[]) xmlmem[size]=0; zip_fclose(zfile); xmlmem=strreplace(xmlmem,"?>\n","?>\n<!DOCTYPE pack [\n"); - + xmlmem=strreplace(xmlmem,"ISO-8859-1","Windows-1252"); int entries=zip_get_num_files(zip); for (int i=0; i<entries; i++) { |