id summary reporter owner description type status priority milestone component version severity resolution keywords cc mlocked 8722 "xmltvparser uses incorrect date format for ""previously-shown""" anonymous stuartm "xmltvparser.cpp currently has: {{{ 411 else if (info.tagName() == ""previously-shown"") 412 { 413 pginfo->previouslyshown = true; 414 415 QString prevdate = info.attribute(""start""); 416 pginfo->originalairdate = 417 QDate::fromString(prevdate, Qt::ISODate); 418 } }}} However, the date format for previously-shown given at the xmltv wiki ( http://wiki.xmltv.org/index.php/XMLTVFormat ) seems to imply that the string is not in ISODate format but rather XMLTVDate (yyyymmddtttttt) format. Propose changing code to: {{{ 411 else if (info.tagName() == ""previously-shown"") 412 { 413 pginfo->previouslyshown = true; 414 415 QString prevdate = info.attribute(""start""); 415 QDateTime originalairdatetime; 415 fromXMLTVDate(prevdate,originalairdatetime); 416 pginfo->originalairdate = 417 originalairdatetime.date(); 418 } }}} " patch closed minor unknown MythTV - Mythfilldatabase Master Head medium wontfix 1