Diff for /XML/SAX.c between versions 1.34 and 1.35

version 1.34, 1999/09/30 15:43:35 version 1.35, 1999/10/14 07:29:23
Line 552  attribute(void *ctx, const xmlChar *full Line 552  attribute(void *ctx, const xmlChar *full
     ret = xmlNewNsProp(ctxt->node, namespace, name, NULL);      ret = xmlNewNsProp(ctxt->node, namespace, name, NULL);
   
     if (ret != NULL) {      if (ret != NULL) {
         if (ctxt->replaceEntities == 0)          if ((ctxt->replaceEntities == 0) && (!ctxt->html))
             ret->val = xmlStringGetNodeList(ctxt->myDoc, value);              ret->val = xmlStringGetNodeList(ctxt->myDoc, value);
         else          else
             ret->val = xmlNewDocText(ctxt->myDoc, value);              ret->val = xmlNewDocText(ctxt->myDoc, value);

Removed from v.1.34  
changed lines
  Added in v.1.35


Webmaster