summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* - Use <span> instead of <font> in highlight_string(). (Patch by mg@iceni.pl)Derick Rethans2004-02-251-5/+5
|
* HTTP compression support (gzip and deflate)Dmitry Stogov2004-02-254-14/+165
|
* Do not corrupt mysql build with mysqli build stuff. (should fix #27387)foobar2004-02-251-3/+3
|
* Improve error messagesfoobar2004-02-251-3/+3
|
* updateZeev Suraski2004-02-251-0/+5
|
* - Rename compatiblity mode to zend.ze2_compatibility_mode (it doesn't ↵Zeev Suraski2004-02-253-85/+95
| | | | | | | | | | | only affect auto-clone). - Perform implementation checks even with simple inheritance (off when compatibility mode is enabled). - Restore default arguments in interfaces and handle it correctly. - Move registration of internal classes later in the startup sequence in order to have INI options available.
* - Rename compatiblity mode to zend.ze2_compatibility_mode (it doesn't only ↵Zeev Suraski2004-02-256-31/+21
| | | | | | | | | | | affect auto-clone). - Perform implementation checks even with simple inheritance (off when compatibility mode is enabled). - Restore default arguments in interfaces and handle it correctly. - Move registration of internal classes later in the startup sequence in order to have INI options available.
* - Fixed bug #27391 (typo in Fatal Error message).Derick Rethans2004-02-251-1/+1
|
* ZTS fix.Sebastian Bergmann2004-02-251-1/+1
|
* - Abstract methods cannot have defaults for argumentsZeev Suraski2004-02-254-10/+38
| | | | | | - Make function foo($a, $b=null) satisfy both foo($a) and foo($a, $b) prototypes
* Proto fixes.Sebastian Bergmann2004-02-252-18/+18
|
* Fix object destruction/free in shutdownMarcus Boerger2004-02-251-7/+5
| | | | | | - set destructor_called even when no dtor is given - use free_storage even when no dtor hat to be called
* Checking once for dtor is enoughMarcus Boerger2004-02-251-3/+1
|
* ChangeLog update2004-02-252-0/+60
|
* Fix class flags when handling abstract methodsMarcus Boerger2004-02-241-1/+1
|
* Fixed bug #27383 (Potential crash inside fopen_wrapper, while parsingIlia Alshanetsky2004-02-241-4/+13
| | | | | response code).
* fix for bug 27384George Schlossnagle2004-02-241-1/+1
|
* Add missing export.Frank M. Kromann2004-02-241-0/+2
|
* More wordsize/alignment fixesArd Biesheuvel2004-02-241-16/+16
|
* Documentation updateDmitry Stogov2004-02-242-30/+8
|
* Remove empty commentZeev Suraski2004-02-241-1/+0
|
* WSDL support for <soap:headerfault> was implementedDmitry Stogov2004-02-247-119/+333
|
* fix win32 compile with libxml 2.6Rob Richards2004-02-241-2/+5
| | | | | fix mem leaks
* Fixed value of attribute is default value of attributeDmitry Stogov2004-02-241-1/+3
|
* fix: anotaion -> anotationDmitry Stogov2004-02-241-8/+8
|
* constants for MIME/DIME encoding were addedDmitry Stogov2004-02-241-0/+6
|
* XML Schema support was improved: support for <element> default, fixed and ↵Dmitry Stogov2004-02-243-4/+54
| | | | nillable
* Fix bug #26005 (Random "cannot change the session ini settings" errors)foobar2004-02-241-1/+13
|
* ChangeLog update2004-02-242-0/+173
|
* test case for statcache corruption of BGWez Furlong2004-02-231-0/+13
|
* Ooops, these should not be pointers ;)Wez Furlong2004-02-231-1/+1
|
* Make today's changes work w/ str_ireplace() as well.Sara Golemon2004-02-231-8/+27
|
* Short circuit str_replaces when we already know that needle does not occur ↵Sara Golemon2004-02-231-1/+10
| | | | | | | in haystack. Note: Prior bugfix was for #27176 not #27276
* Bugfix #27276: When using str_replace to expand a string, count occurances ↵Sara Golemon2004-02-231-1/+8
| | | | of needle in haystack to avoid massive overallocation
* Fixed bug #27341 (HEAD requests fail to return data).Ilia Alshanetsky2004-02-231-1/+2
|
* - Added testcase for bug #27276Derick Rethans2004-02-231-0/+15
|
* Fix bug #27337 (missing sapi_shutdown() causing memory leak)foobar2004-02-231-0/+1
|
* - Improve precendence:Andi Gutmans2004-02-231-2/+2
| | | | | | | | | | | | | <?php $obj->foo = "Blah"; if (!$obj instanceof StdClass) { print "No"; } else { print "Yes"; }
* fixed prototypes for mysqli_connect_err* functionsGeorg Richter2004-02-231-2/+2
| | | | | (thx to Mehdi Achour)
* 64-bit fixesArd Biesheuvel2004-02-232-2/+3
|
* - omit WARNING instead of ERROR for x_p_c_nsChristian Stocker2004-02-234-4/+5
| | | | | - fix SKIPIF code in tests
* skip tests, if xml_parser_create_ns is not supported.Christian Stocker2004-02-233-0/+12
|
* test for attributesChristian Stocker2004-02-231-0/+34
|
* - mixed up name and value... fixedChristian Stocker2004-02-231-6/+6
|
* fix attribute handling in combination with sax2Christian Stocker2004-02-231-3/+29
|
* Use ZOOM_resultset_sort for yaz_sort. Require YAZ 2.0.13 or later.Adam Dickmeiss2004-02-232-6/+9
|
* remove compiler warningsChristian Stocker2004-02-232-1/+3
|
* - Decrease precedence of instanceof so that the following is true:Andi Gutmans2004-02-231-1/+2
| | | | | | php -r 'var_export((object)1 instanceof stdClass);'; Patch by Jan Lehnardt
* - make it compile with libxml2 2.5 againChristian Stocker2004-02-232-1/+18
| | | | | | - disable xml_parser_create_ns with libxml2 2.5 for the time being - the #if s can be removed, once we insist on libxml2 2.6
* fixed report messageGeorg Richter2004-02-232-2/+6
| | | | | Disabled reconnect option