diff options
| author | louis <louis.braun@gmx.de> | 2015-08-10 22:48:52 +0200 |
|---|---|---|
| committer | louis <louis.braun@gmx.de> | 2015-08-10 22:48:52 +0200 |
| commit | f44aabb7ac97f329645bab102849150f5bc30983 (patch) | |
| tree | 93a194fda82240ebe2057e7163745b99198a9651 /libtemplate | |
| parent | b62c4ceae0568ef6e7c7adb92d7f01802173fc22 (diff) | |
| download | vdr-plugin-skindesigner-f44aabb7ac97f329645bab102849150f5bc30983.tar.gz vdr-plugin-skindesigner-f44aabb7ac97f329645bab102849150f5bc30983.tar.bz2 | |
fixed bug that setup int parameters do not respect max value
Diffstat (limited to 'libtemplate')
| -rw-r--r-- | libtemplate/xmlparser.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libtemplate/xmlparser.c b/libtemplate/xmlparser.c index ba5684e..17fa2c6 100644 --- a/libtemplate/xmlparser.c +++ b/libtemplate/xmlparser.c @@ -600,6 +600,7 @@ void cXmlParser::ParseSetupParameter(void) { GetAttribute(attributeName, paramName); GetAttribute(attributeDisplayText, paramDisplayText); GetAttribute(attributeMin, paramMin); + GetAttribute(attributeMax, paramMax); GetAttribute(attributeOptions, paramOptions); GetNodeValue(paramValue); |
