summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Stylefoobar2003-02-231-3/+2
|
* NEWS update2003-02-231-0/+1
|
* ChangeLog update2003-02-231-0/+100
|
* Dropped optimizationMarcus Boerger2003-02-221-35/+7
| | | | | # It is impossible to combine skip=-1 searches with firstkey/nextkey results
* INI files are case insensitiveMarcus Boerger2003-02-221-2/+2
|
* Revent previous patch, adding of file_write_content() was premature.Ilia Alshanetsky2003-02-223-63/+0
|
* int/long change.Ilia Alshanetsky2003-02-224-3/+66
|
* Remove testcodeMarcus Boerger2003-02-221-3/+0
|
* @Added dba handler inifiles to support ini files. (Marcus)Marcus Boerger2003-02-227-6/+977
|
* additional speedup for array_shift(). No need to rehash if the removed element'sAndrey Hristov2003-02-221-2/+8
| | | | | | | key is not scalar and elements with scalar keys are already well numbered (sequentially from 0) for some reason. This is the case if the leading elements have no scalar indexes.
* rehash only in case something is changed.Andrey Hristov2003-02-221-1/+3
| | | | | | #lowers the execution time in half on my machine on array with 1000 elements #with nonscalar keys. Maybe it can be optimized further.
* removed some commentsGeorg Richter2003-02-221-7/+2
|
* Fixed bug with stmt_close (libmysql bk version 1.1477 required)Georg Richter2003-02-223-26/+29
| | | | | Fixed bug with mysql_execute and float values
* Add xbithack support to apache2handler SAPI.Justin Erenkrantz2003-02-221-3/+13
| | | | | (configuration doesn't work, but that's not something new apparently.)
* ChangeLog update2003-02-221-0/+49
|
* Add comment about thread-safety of gethostbyname on win32.Wez Furlong2003-02-212-6/+8
| | | | | Set the correct path to the win32 config.h file in the .dsp file.
* MFBfoobar2003-02-211-20/+23
|
* - Fixed bug: #22339foobar2003-02-213-4/+4
| | | | | | # No NEWS, this was bug introduced by Marcus a while ago.. # Not present in php4.3.x branch
* MFBfoobar2003-02-212-726/+1092
|
* ZTS fixesfoobar2003-02-212-8/+8
|
* ChangeLog update2003-02-212-0/+194
|
* this tiny change adds the location of apache includes and libraries thatDavid Viner2003-02-211-6/+6
| | | | | | | | | | | are installed when you use the Apache Windows Installer (C:\Program Files\Apache Group\Apache\*). With this patch, a windows developer who has used the Apache Windows Installer should be able to compile the Apache sapi module without any modifications to his/her installed tree. It should have no effect whatsoever on anyone else. --dviner
* An input filter might not simply strip stuff, it might also turn thingsRasmus Lerdorf2003-02-206-13/+13
| | | | | | | into entities or use some other mechanism which causes the filtered data to be longer than the original data. Ergo, pass in the address of the buffer instead so the filter is free to reallocate it.
* Remove C++-style comment. (Breaks Sun Forte compiler.)Justin Erenkrantz2003-02-201-1/+1
|
* *cough*Wez Furlong2003-02-201-1/+1
| | | | | Fix another stupid mistake.
* Reduce unnecessary filter applications when stream is (read|write) onlySara Golemon2003-02-201-1/+9
|
* Allow namespaces to have a number of parts. I.e., now you can do:Stanislav Malyshev2003-02-205-73/+53
| | | | | | | | | | | namespace foo { function abc() {} } ... namespace foo { functio def() {} }
* Clean up apache2handler SAPI.Justin Erenkrantz2003-02-203-236/+211
| | | | | | | | | | Key improvements: - Be streamy - Re-enable virtual() support - Set content_type correctly - Remove unnecessary code and reintroduce some missing code - Change signature from PhP to PHP
* Fixed bug #22330 (overloaded strrpos() gives wrong results)Moriyoshi Koizumi2003-02-201-1/+1
| | | | | Patch by david at santinoli dot com. Thanks!
* - Fixed testcase... you can never trust on RFCs it seemsDerick Rethans2003-02-202-4/+4
|
* put constants into C outputHartmut Holzgraefe2003-02-201-7/+15
| | | | | | do not limit int constants to numbers, C #defines are ok as strings foobar(void) needs special treatment in code generation
* stylefoobar2003-02-201-3/+2
|
* - Fixed copy and paste bugDerick Rethans2003-02-201-1/+1
|
* - Also add the optional raw output parameter to md5_file and sha1_file.Derick Rethans2003-02-203-26/+33
|
* This is added in 4.3.2foobar2003-02-201-1/+0
|
* Fixed bug: #22306 (pg_lo_seek($h, 0, PGSQL_SEEK_SET) succeeds but returns false)foobar2003-02-201-1/+1
|
* updateSascha Schumann2003-02-201-0/+1
|
* - No need to add the \0 ourselves, the estrndup in STRINGL takes care ofDerick Rethans2003-02-202-4/+2
| | | | | that for us.
* updateSascha Schumann2003-02-201-0/+1
|
* generally urlencode parametersSascha Schumann2003-02-201-1/+1
|
* VCWD_LSTAT is not available on win32/netwarefoobar2003-02-201-2/+0
|
* - Fixed bug #22299 (gethostbyname() crash with non-existing domain on MacOSX)foobar2003-02-201-1/+1
|
* NEWS update2003-02-201-0/+2
|
* ChangeLog update2003-02-202-0/+224
|
* Revert accidental commit.Ilia Alshanetsky2003-02-201-1/+1
|
* Fixed bug #22308 (optimized passthru, code is now ~40 times faster).Ilia Alshanetsky2003-02-202-5/+6
|
* consistent with the used stylefoobar2003-02-202-3/+4
|
* Add folding markers and editor directive blocks.Jon Parise2003-02-193-2/+64
|
* Fix mbstring input_filterRasmus Lerdorf2003-02-192-2/+2
|
* Input Filter support. See README.input_filter for details.Rasmus Lerdorf2003-02-198-3/+212
| | | | | @- Input Filter support added. See README.input_filter. (Rasmus)