Revision tags: php-4.3.0dev, php5_5_0, RELEASE_0_90, php-4.3.0dev_zend2_alpha1, BEFORE_OBJECTS_STORE, SAFEGUARD_3_0_BETA1_RC1_26062002, RELEASE_0_11, NEW_UI_API_BP, RELEASE_0_10, RELEASE_0_4, php-4.3.0dev-ZendEngine2, php-4.3.0dev-ZendEngine2-Preview1 |
|
#
6b2ab5f6 |
| 16-May-2002 |
Preston L. Bannister |
Adjust dirname() on Win32 to match CWD per drive semantics.
|
#
adf701a3 |
| 16-May-2002 |
Rasmus Lerdorf |
Grr.. I keep leaving my debug in...
|
#
5d286e21 |
| 16-May-2002 |
Rasmus Lerdorf |
Fix for #17271 @ Fix crash bug in stripslashes() when working in sybase mode (Rasmus)
|
Revision tags: php-4.2.1, php-4.2.1RC2 |
|
#
ea84524b |
| 04-May-2002 |
Sascha Schumann |
block_ended/opposite_target were set but never used
|
Revision tags: php-4.2.1RC1 |
|
#
860e6758 |
| 25-Apr-2002 |
Rui Hirokawa |
fixed directory access problem when direcory name is encoded in japanese Shift_JIS encoding.
|
Revision tags: php-4.2.0, php-4.2.0RC4, php-4.2.0RC3 |
|
#
1f234410 |
| 07-Apr-2002 |
Wez Furlong |
fix for #16469
|
Revision tags: php-4.2.0RC2 |
|
#
492c8372 |
| 27-Mar-2002 |
Hartmut Holzgraefe |
fix for Bug #16314
|
#
f521ae3f |
| 26-Mar-2002 |
Markus Fischer |
- Fix bug 11244 (patch by "Tal Peer" <hazgul99@hotmail.com>). # Sorry for the delay :-)
|
Revision tags: php-4.2.0RC1 |
|
#
3dbde958 |
| 20-Mar-2002 |
Wez Furlong |
Make state parameter of php_strip_tags passed by reference. Move state tracking to stream structure.
|
#
349936c9 |
| 18-Mar-2002 |
jim winstead |
Fix calculation of output buffer size in wordwrap(). (Thanks to Wez.)
|
Revision tags: help |
|
#
c4379260 |
| 12-Mar-2002 |
Yasuo Ohgaki |
Change php_addslashes() a little. Since most users do not use magic_quote_sybase, be nicer to users not using magic_quote_sybase.
|
#
6f9c7bcf |
| 02-Mar-2002 |
Derick Rethans |
- Fix warning message for join().
|
Revision tags: php-4.1.2, BEFORE_NEW_OBJECT_MODEL, PRE_ISSET_PATCH |
|
#
a38bfb42 |
| 22-Jan-2002 |
Sean Bright |
Fix for bug #15130. Way too much effort for this bug, but cleaned up code a bit, use zend_parse_parameters(), etc, etc. We only look for extensions in the basename, not the full path.
|
#
4fb4c6d4 |
| 05-Jan-2002 |
jim winstead |
More tweaking of wordwrap() with the cut parameter set. It was being a little too aggressive and cutting words without breaking at spaces first. (A couple of tests were incorrect.)
|
#
ca15b222 |
| 05-Jan-2002 |
jim winstead |
New memcpy()-based wordwrap() implementation. The simple case (single-character break, no forced break) appears to be about 60% faster, and there's simply no comparison for non-simple cases w
New memcpy()-based wordwrap() implementation. The simple case (single-character break, no forced break) appears to be about 60% faster, and there's simply no comparison for non-simple cases with non-trivial amounts of text. The old algorithm was O(n^2) (with an unfortunately large constant factor) because of the use of strncat(), the new one is O(n). Added some more tests, too. @ - Made wordwrap() significantly faster. (Jim) # test case: $t = join('',file('ChangeLog')); $w = wordwrap($t,10,"\n",1); # new code completes in less than a second. i'm still waiting for the # old code to finish.
show more ...
|
#
f68b7c5f |
| 04-Jan-2002 |
jim winstead |
Fixed segfault in wordwrap() when wrapping to zero width and using multi-character break or trying to force cut (bug #12768, now fails and issues a warning because forcing a zero-width cut do
Fixed segfault in wordwrap() when wrapping to zero width and using multi-character break or trying to force cut (bug #12768, now fails and issues a warning because forcing a zero-width cut doesn't make sense). Also converted to new paramater-passing API and avoid making an extra copy of the return values. # also added tests. @- Fixed segfault in wordwrap() when wrapping to zero width and using @ multi-character break or trying to force cut (bug #12768). (Jim)
show more ...
|
#
c9bc54ab |
| 03-Jan-2002 |
Hartmut Holzgraefe |
fix for bug #14832: basename with 2nd parm corrupts source string
|
Revision tags: php-4.1.1, PRE_FUNC_RETURNS_OBJECT_PATCH, ChangeLog |
|
#
38933514 |
| 11-Dec-2001 |
Sebastian Bergmann |
Update headers.
|
Revision tags: php-4.1.0 |
|
#
49cc65cd |
| 06-Dec-2001 |
Hartmut Holzgraefe |
renamed rot13 to str_rot13()
|
#
71028d46 |
| 06-Dec-2001 |
Hartmut Holzgraefe |
ported rot13() from php3
|
Revision tags: php-4.1.0RC5 |
|
#
29cd3099 |
| 01-Dec-2001 |
Derick Rethans |
- Fix a crash when passing e.g. NULL to basename(). (Patch by Markus Fischer <mfischer@guru.josefine.at>) #- Simplyfied code using zend_parse_parameters().
|
Revision tags: php-4.1.0RC4, php-4.1.0RC3, php-4.1.0RC2 |
|
#
98a7a1ba |
| 10-Nov-2001 |
Andrei Zmievski |
Fixed bug #13901.
|
#
2ace2ccd |
| 02-Nov-2001 |
James Moore |
WS fix
|
#
c8896a38 |
| 02-Nov-2001 |
James Moore |
@- Fix behaviour of strtok. Bug 13866 (jmoore) # I have brought the behaviour of strtok into line with how the # libc strtok's behave. currently given # <string1><token><string2><token><t
@- Fix behaviour of strtok. Bug 13866 (jmoore) # I have brought the behaviour of strtok into line with how the # libc strtok's behave. currently given # <string1><token><string2><token><token>string> # three recursive calls to strtok returns <string1>. <string2>, <token><string3> # it now returns <string1>, <string2>, <string3>. (there was some # debate in #php.bugs if it should return <string1>, <string2>, false, <string3> # but php's strtok now behaves the same way as the libc version.
show more ...
|
Revision tags: POST_PARAMETER_PARSING_API, PRE_PARAMETER_PARSING_API, php-4.1.0RC1 |
|
#
744d1fc1 |
| 04-Oct-2001 |
Derick Rethans |
- 'Fix' for bug #13543
|