summaryrefslogtreecommitdiff
path: root/ext/simplexml/simplexml.c
Commit message (Collapse)AuthorAgeFilesLines
* Added parameter parsing check to SimpleXMLElement::count()Kalle Sommer Nielsen2010-02-251-1/+5
|
* sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-031-1/+1
|
* Fixed bug #49800 (SimpleXML allow (un)serialize() calls without warning).Ilia Alshanetsky2009-10-071-0/+2
| | | | | # original patch by wmeler at wp-sa dot pl
* Fix extension loading orderHannes Magnusson2009-06-101-0/+1
|
* - Dropped *_TEXT* macros in favor of unicode macros direct usageFelipe Pena2009-05-251-2/+2
|
* Fixed Windows build, declarations first ladies and gentlemenKalle Sommer Nielsen2009-03-301-6/+5
|
* - Removed:Felipe Pena2009-03-261-40/+23
| | | | | | | | | | | | - UG(unicode) checks - pcre_cache_entry.unicode_mode - Changed: - ZEND_STR_TYPE -> IS_UNICODE - convert_to_text -> convert_to_unicode - convert_to_text_ex -> convert_to_unicode_ex (Felipe, Steph)
* - This is PHP 6 - if this ... ever gets outMarcus Boerger2009-03-101-1/+1
|
* - MFB (Fixed Bug #46048: SimpleXML top-level @attributes not in iterator).David Coallier2009-02-041-1/+1
|
* Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* properly export functionsRob Richards2008-12-261-3/+3
|
* Fix #46241 (stacked error_handlers, error_handling in general)Etienne Kneuss2008-11-191-0/+1
|
* - Added 'static' into ZEND_BEGIN_ARG_INFO_EX macro (again!)Felipe Pena2008-11-171-3/+0
|
* Fix #45976 (Move SXE from SPL to SimpleXML)Etienne Kneuss2008-11-061-12/+2
|
* - Revert ZEND_BEGIN_ARG_INFO changeFelipe Pena2008-11-021-0/+3
|
* - Added 'static' into ZEND_BEGIN_ARG_INFO_EX macroFelipe Pena2008-10-241-3/+0
|
* initialize optional varsArnaud Le Blanc2008-10-211-2/+2
|
* fix bug #46323 (compilation of simplexml for NetWare breaks)Rob Richards2008-10-201-1/+1
|
* MFB: propagated const, to avoid "discards qualifiers from pointer target ↵Alexey Zakhlestin2008-10-161-2/+2
| | | | type" errors
* fix bug #46047 (SimpleXML converts empty nodes into object with nested array)Rob Richards2008-09-111-7/+11
| | | | | add test
* fix bug #46003 (isset on nonexisting node return unexpected results)Rob Richards2008-09-101-1/+1
| | | | | add test
* fix bug #45553 (Using XPath for attributes with a namespace does not work)Rob Richards2008-09-101-1/+1
| | | | | add test
* Fix error_handling usage in various extensionsEtienne Kneuss2008-08-081-12/+12
|
* Move SXI::count to SXE::count and make it user-friendlyEtienne Kneuss2008-07-091-3/+57
|
* - MFB: Added arginfoFelipe Pena2008-06-271-3/+29
|
* MFB:When dumping entire document to file via asXml() don't lose the encodingIlia Alshanetsky2008-05-231-1/+1
|
* Fix #44484 (define SimpleXMLElement::__toString())Etienne Kneuss2008-05-031-0/+18
|
* fix bug #44478 (Inconsistent behaviour when assigning new nodes)Rob Richards2008-03-201-10/+3
| | | | | add test
* fix bug #42369 (Implicit conversion to string leaks memory)Rob Richards2008-01-311-0/+5
| | | | | add test
* Fixed bug #43918 (Segmentation fault in garbage collector)Dmitry Stogov2008-01-291-0/+3
|
* MFH: fix leak appearing when appending data to unnamed attributeAntony Dovgal2008-01-231-7/+15
|
* - Bugfix #37076 (SimpleXML ignores .=). (felipe, marcus)Marcus Boerger2008-01-221-4/+6
|
* Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* fix folding, move protos to the top of the sourcesAntony Dovgal2007-11-301-32/+53
|
* fix bug #43221 (SimpleXML adding default namespace in addAttribute)Rob Richards2007-11-121-0/+7
| | | | | add test
* Added macros for managing zval refcounts and is_ref statusesYiduo (David) Wang2007-10-071-9/+9
|
* Improved memory usage by movig constants to read only memory. (Dmitry, Pierre)Dmitry Stogov2007-09-271-3/+3
|
* fix bug #41833 (addChild() on a non-existent node, no node created, ↵Rob Richards2007-07-311-3/+6
| | | | getName() segfaults)
* fix possible crashRob Richards2007-07-311-1/+3
|
* MFB: fix bug #41947 (SimpleXML incorrectly registers empty strings as namespacesRob Richards2007-07-101-3/+8
| | | | | add test
* Fix behavior of empty($sxe->element) and empty($sxe['prop'])Sara Golemon2007-07-041-0/+10
| | | | | when used on empty elements properties (apply PHP emptiness rules)
* MFB: fix bug #41861 (getNamespaces() returns namespaces of node's siblings)Rob Richards2007-07-031-4/+1
| | | | | add test
* Allow unicode XMLDmitry Stogov2007-07-021-7/+7
|
* MFB: fix bug #41867 (getName is broken)Rob Richards2007-07-021-3/+7
| | | | | add test
* Allowed loading XML from unicode stringsDmitry Stogov2007-06-291-3/+11
|
* MFB:fix memleak in sxe_prop_dim_read()Nuno Lopes2007-06-241-3/+3
|
* Fixed wrong fic for bug #41582Dmitry Stogov2007-06-131-35/+78
|
* fix #41582 (SimpleXML crashes when accessing newly created element)Antony Dovgal2007-06-051-3/+9
|
* MFBIlia Alshanetsky2007-05-281-2/+2
|
* MFB: fix bug #37386 (autocreating element doesn't assign value to first node)Rob Richards2007-03-261-4/+13
| | | | | | | all single SimpleXMLElements are addressable using offset 0 use correct node for xpath context node add test