| 441 | } |
| 442 | |
| 443 | char *ph_xmlNodeGetNodeContentByName(xmlNodePtr node, const char *name) |
| 444 | { |
| 445 | xmlNodePtr node1 = ph_xmlNodeGetNodeByName(node, name); |
| 446 | if (node1) return (char*)xmlNodeGetContent(node1); |
| 447 | else return NULL; |
| 448 | } |
| 449 | |
| 450 | |
| 451 | int ph_getDbUrlNodes(ph_framework_t *_ph_framework_data, xmlNodePtr framework_node) |
no test coverage detected