n = (Node *)g_new0 (Node, 1);
n->valid = TRUE;
+ n->condition = FALSE;
+
if (xmlStrEqual (xmlGetProp (cur, (xmlChar *)"type"), (xmlChar *)"and"))
{
n->logic_type = LOGIC_TYPE_AND;
n = (Node *)g_new0 (Node, 1);
n->valid = TRUE;
+ n->condition = FALSE;
+
if (g_strcmp0 ((gchar *)xmlGetProp (cur, (xmlChar *)"validator_type"), "form") == 0)
{
ZakFormValidatorConstructorFunc validator_constructor;
if (!n_child->valid)
{
- if (n_child->form_validator == NULL
+ if (!n_child->condition
+ && n_child->form_validator == NULL
&& n_child->element_validator != NULL
&& n_child->element != NULL)
{