summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* This commit was manufactured by cvs2svn to create tag 'php_5_0_0'.php-5.0.0SVN Migration2004-07-1525-452/+54
|
* This commit was manufactured by cvs2svn to create branch 'PHP_5_0'.SVN Migration2004-07-15119-15023/+0
|
* - Fix prototypeMarcus Boerger2004-07-151-1/+1
|
* Synch commentsMarcus Boerger2004-07-152-15/+89
|
* Bug 29058 (patch submitted by bug reporter)Dan Kalowsky2004-07-151-1/+1
|
* Test for bug 26737:Magnus M��tt�2004-07-151-0/+21
| | | | | | Protected and private variables are not saved on serialization when a user defined __sleep is used.
* fix #29012 (Potential race during first connection) thanks to cjbj at ↵Antony Dovgal2004-07-151-2/+2
| | | | hotmail dot com
* Fixed Bug #29075 (strnatcmp() incorrectly handles whitespace).Ilia Alshanetsky2004-07-152-3/+17
| | | | | # Original Patch by: curt@php.net
* ChangeLog update2004-07-152-0/+59
|
* Made php -m output sorted case-insensitevlyEdin Kadribasic2004-07-142-2/+2
|
* same bug.Stefan Esser2004-07-141-1/+1
|
* - Fixed text.Derick Rethans2004-07-141-1/+1
|
* Security Fix broken! Destroyed Basic auth. Blame: meStefan Esser2004-07-141-1/+1
| | | | | 4.3.x not affected
* be consistent with write_dimensionStanislav Malyshev2004-07-141-5/+4
|
* fix #28957Stanislav Malyshev2004-07-141-0/+8
|
* Changing the Tidy version to 2.0John Coggeshall2004-07-141-1/+1
|
* ChangeLog update2004-07-142-0/+129
|
* Bugfix# 28829 bcmath values for 0, 1, and 2 initialized/freed at wrong time ↵Sara Golemon2004-07-143-7/+26
| | | | for threaded sapis.
* Add {{{ proto'sZeev Suraski2004-07-131-12/+85
|
* - 5.0.1-devAndi Gutmans2004-07-134-6/+8
|
* Bugfix #29116 Zend constant warning uses memory after free (jdolecek at ↵Marcus Boerger2004-07-131-1/+1
| | | | NetBSD dot org)
* - Roll PHP 5.0.0Andi Gutmans2004-07-134-5/+5
|
* add missing breakWez Furlong2004-07-131-0/+1
|
* prototype fixesGeorg Richter2004-07-131-3/+3
|
* initial xmlwriter codeRob Richards2004-07-138-0/+1533
|
* Looks like Sara forgot to change this too.Wez Furlong2004-07-131-1/+1
|
* changed mysqli_stmt_reset (returns now bool instead of void)Georg Richter2004-07-131-4/+5
|
* Fixed typoStefan Esser2004-07-131-1/+1
|
* remove test dependance on postgres ** this still fails howeverAlan Knowles2004-07-131-1/+1
|
* ensure that test passes on systems without postgres built in.Alan Knowles2004-07-131-4/+4
|
* ChangeLog update2004-07-132-0/+89
|
* Fix file_get_contents() bug...Wez Furlong2004-07-121-0/+2
|
* - Initial releaseTimm Friebe2004-07-121-0/+76
|
* Added missing constant and correct bound column retrieval. When boundIlia Alshanetsky2004-07-122-0/+6
| | | | | columns are specified only return status (TRUE/FALSE) indicator.
* Fixed a bug that could result in false failed query reporting onIlia Alshanetsky2004-07-121-2/+6
| | | | | INSERT/UPDATE/DELETE queries.
* Missing patch.Ilia Alshanetsky2004-07-121-4/+6
|
* Fixed bug #28999 (fixed behaviour of exec() to work as it did in 4.X).Ilia Alshanetsky2004-07-121-0/+1
|
* Fixed bug #29086 & #28064 (PHP crashes on extremly long scripts).Ilia Alshanetsky2004-07-121-2/+2
|
* Touch the file so that build system does not try to rebuild it.Ilia Alshanetsky2004-07-121-1/+1
|
* - Convert zend_class_entry -> zend_class_entry *Andi Gutmans2004-07-121-2/+2
|
* implement the clone code for the XSLTProcessor object and fix #29108Christian Stocker2004-07-121-2/+50
| | | | | "xslt segfaults when ze1_compatibility_mode is on" (By Rob Richards)
* fix #28978 (multiple OCIBindByName on the same placeholder eats memory)Antony Dovgal2004-07-121-2/+2
|
* ChangeLog update2004-07-121-0/+63
|
* reorder + addAndrey Hristov2004-07-111-1/+3
|
* fixing bug #28974 : overflow in array_slice()Andrey Hristov2004-07-113-6/+95
| | | | | | The same kind of overflow appeared in array_splice(), substr() and substr_replace()
* Ooups...Stefan Esser2004-07-111-0/+3
|
* Fixed: PARSE_TYPE parameter to input_filterStefan Esser2004-07-111-2/+7
| | | | | Fixed: input_filter should also be able to filter empty variables by name
* fixing bug #28739Andrey Hristov2004-07-112-1/+71
| | | | | | | | array_*diff() and array_*intersect() not clearing the fci cache before work. FCI call cache was introduced in HEAD. All functions that perform sorting of arrays clear the fci cache before work. array_*diff() and\ array_*intersect() were somehow missed to be updated.
* fixing the name of the testAndrey Hristov2004-07-111-1/+1
|
* fixing bug 29038:Andrey Hristov2004-07-112-1/+75
| | | | | | | EXTR_PREFIX_SAME is prevented from creating a new variable when the key is a empty string. EXTR_PREFIX_ALL is also prevented from doing that, but works for numbers.