diff options
| author | louis <louis.braun@gmx.de> | 2014-12-12 17:52:16 +0100 |
|---|---|---|
| committer | louis <louis.braun@gmx.de> | 2014-12-12 17:52:16 +0100 |
| commit | 84756db20870696911fdac83313d256085b9966b (patch) | |
| tree | 5e7d704d6e76c7245b9e3f499e83a8cc0813b02f /libtemplate/xmlparser.c | |
| parent | e746d28750d231a57494f9cffe648087b6f4d37f (diff) | |
| download | vdr-plugin-skindesigner-84756db20870696911fdac83313d256085b9966b.tar.gz vdr-plugin-skindesigner-84756db20870696911fdac83313d256085b9966b.tar.bz2 | |
added currentschedule viewelement in displaymenumain
Diffstat (limited to 'libtemplate/xmlparser.c')
| -rw-r--r-- | libtemplate/xmlparser.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libtemplate/xmlparser.c b/libtemplate/xmlparser.c index 8931f2f..ce39dcc 100644 --- a/libtemplate/xmlparser.c +++ b/libtemplate/xmlparser.c @@ -514,7 +514,9 @@ bool cXmlParser::ParseSubView(xmlNodePtr node) { } if (subView->ValidViewElement((const char*)childNode->name)) { + xmlAttrPtr attr = childNode->properties; vector<pair<string, string> > attribs; + ParseAttributes(attr, childNode, attribs); ParseViewElement(childNode->name, childNode->xmlChildrenNode, attribs, subView); } else if (subView->ValidViewList((const char*)childNode->name)) { ParseViewList(childNode, subView); |
