fixed 1324 ext/soap/php_encoding.c if (model->u.element->fixed && strcmp(model->u.element->fixed, (char*)r_node->children->content) != 0) { fixed 1325 ext/soap/php_encoding.c soap_error3(E_ERROR, "Encoding: Element '%s' has fixed value '%s' (value '%s' is not allowed)", model->u.element->name, model->u.element->fixed, r_node->children->content); fixed 1328 ext/soap/php_encoding.c } else if (model->u.element->fixed) { fixed 1330 ext/soap/php_encoding.c xmlNodeSetContent(dummy, BAD_CAST(model->u.element->fixed)); fixed 1348 ext/soap/php_encoding.c if (model->u.element->fixed && strcmp(model->u.element->fixed, (char*)node->children->content) != 0) { fixed 1349 ext/soap/php_encoding.c soap_error3(E_ERROR, "Encoding: Element '%s' has fixed value '%s' (value '%s' is not allowed)", model->u.element->name, model->u.element->fixed, node->children->content); fixed 1352 ext/soap/php_encoding.c } else if (model->u.element->fixed) { fixed 1354 ext/soap/php_encoding.c xmlNodeSetContent(dummy, BAD_CAST(model->u.element->fixed)); fixed 1538 ext/soap/php_encoding.c if (attr->fixed && strcmp(attr->fixed, str_val) != 0) { fixed 1539 ext/soap/php_encoding.c soap_error3(E_ERROR, "Encoding: Attribute '%s' has fixed value '%s' (value '%s' is not allowed)", attr->name, attr->fixed, str_val); fixed 1541 ext/soap/php_encoding.c } else if (attr->fixed) { fixed 1542 ext/soap/php_encoding.c str_val = attr->fixed; fixed 1650 ext/soap/php_encoding.c model->u.element->fixed && strcmp(model->u.element->fixed, (char*)property->children->content) != 0) { fixed 1651 ext/soap/php_encoding.c soap_error3(E_ERROR, "Encoding: Element '%s' has fixed value '%s' (value '%s' is not allowed)", model->u.element->name, model->u.element->fixed, property->children->content); fixed 1672 ext/soap/php_encoding.c model->u.element->fixed && strcmp(model->u.element->fixed, (char*)property->children->content) != 0) { fixed 1673 ext/soap/php_encoding.c soap_error3(E_ERROR, "Encoding: Element '%s' has fixed value '%s' (value '%s' is not allowed)", model->u.element->name, model->u.element->fixed, property->children->content); fixed 1927 ext/soap/php_encoding.c if (attr->fixed && strcmp(attr->fixed, (char*)dummy->children->content) != 0) { fixed 1928 ext/soap/php_encoding.c soap_error3(E_ERROR, "Encoding: Attribute '%s' has fixed value '%s' (value '%s' is not allowed)", attr->name, attr->fixed, dummy->children->content); fixed 807 ext/soap/php_schema.c xmlAttrPtr fixed, value; fixed 814 ext/soap/php_schema.c fixed = get_attribute(val->properties, "fixed"); fixed 815 ext/soap/php_schema.c (*valptr)->fixed = FALSE; fixed 816 ext/soap/php_schema.c if (fixed != NULL) { fixed 817 ext/soap/php_schema.c if (!strncmp((char*)fixed->children->content, "true", sizeof("true")) || fixed 818 ext/soap/php_schema.c !strncmp((char*)fixed->children->content, "1", sizeof("1"))) fixed 819 ext/soap/php_schema.c (*valptr)->fixed = TRUE; fixed 834 ext/soap/php_schema.c xmlAttrPtr fixed, value; fixed 841 ext/soap/php_schema.c fixed = get_attribute(val->properties, "fixed"); fixed 842 ext/soap/php_schema.c (*valptr)->fixed = FALSE; fixed 843 ext/soap/php_schema.c if (fixed != NULL) { fixed 844 ext/soap/php_schema.c if (!strncmp((char*)fixed->children->content, "true", sizeof("true")) || fixed 845 ext/soap/php_schema.c !strncmp((char*)fixed->children->content, "1", sizeof("1"))) { fixed 846 ext/soap/php_schema.c (*valptr)->fixed = TRUE; fixed 1612 ext/soap/php_schema.c cur_type->fixed = estrdup((char*)attr->children->content); fixed 1828 ext/soap/php_schema.c newAttr->fixed = estrdup((char*)attr->children->content); fixed 2103 ext/soap/php_schema.c if (tmp->fixed != NULL && attr->fixed == NULL) { fixed 2104 ext/soap/php_schema.c attr->fixed = estrdup(tmp->fixed); fixed 2154 ext/soap/php_schema.c if (newAttr->fixed) {newAttr->fixed = estrdup(newAttr->fixed);} fixed 2242 ext/soap/php_schema.c if (tmp->fixed) { fixed 2243 ext/soap/php_schema.c type->fixed = estrdup(tmp->fixed); fixed 2383 ext/soap/php_schema.c if (type->fixed) { fixed 2384 ext/soap/php_schema.c efree(type->fixed); fixed 2432 ext/soap/php_schema.c if (type->fixed) { fixed 2433 ext/soap/php_schema.c free(type->fixed); fixed 2500 ext/soap/php_schema.c if (attr->fixed) { fixed 2501 ext/soap/php_schema.c efree(attr->fixed); fixed 2526 ext/soap/php_schema.c if (attr->fixed) { fixed 2527 ext/soap/php_schema.c free(attr->fixed); fixed 1229 ext/soap/php_sdl.c attr->fixed = sdl_deserialize_string(in); fixed 1254 ext/soap/php_sdl.c WSDL_CACHE_GET_1(x->fixed, char, in); fixed 1268 ext/soap/php_sdl.c WSDL_CACHE_GET_1(x->fixed, char, in); fixed 1323 ext/soap/php_sdl.c type->fixed = sdl_deserialize_string(in); fixed 1839 ext/soap/php_sdl.c sdl_serialize_string(attr->fixed, out); fixed 1898 ext/soap/php_sdl.c WSDL_CACHE_PUT_1(x->fixed, out); fixed 1909 ext/soap/php_sdl.c WSDL_CACHE_PUT_1(x->fixed, out); fixed 1924 ext/soap/php_sdl.c sdl_serialize_string(type->fixed, out); fixed 2395 ext/soap/php_sdl.c prest->fixed = (*rest)->fixed; fixed 2611 ext/soap/php_sdl.c if (pattr->fixed) { fixed 2612 ext/soap/php_sdl.c pattr->fixed = strdup(pattr->fixed); fixed 2715 ext/soap/php_sdl.c if (ptype->fixed) { fixed 2716 ext/soap/php_sdl.c ptype->fixed = strdup(ptype->fixed); fixed 129 ext/soap/php_sdl.h char fixed; fixed 134 ext/soap/php_sdl.h char fixed; fixed 210 ext/soap/php_sdl.h char *fixed; fixed 249 ext/soap/php_sdl.h char *fixed; fixed 4453 ext/soap/soap.c if (param->element->fixed) { fixed 4454 ext/soap/soap.c ZVAL_STRING(&defval, param->element->fixed);