Allow empty String values to be read in XML tags. E.g. <default></default> will read...
authorVoyager1 <voyager@xbmc.org>
Sat, 3 Aug 2013 19:36:40 +0000 (21:36 +0200)
committerVoyager1 <voyager@xbmc.org>
Mon, 5 Aug 2013 18:37:27 +0000 (20:37 +0200)
xbmc/utils/XMLUtils.cpp

index 697b524..f5c50e3 100644 (file)
@@ -149,7 +149,7 @@ bool XMLUtils::GetString(const TiXmlNode* pRootNode, const char* strTag, std::st
     return true;
   }
   strStringValue.clear();
-  return false;
+  return true;
 }
 
 bool XMLUtils::HasChild(const TiXmlNode* pRootNode, const char* strTag)