summaryrefslogtreecommitdiff
path: root/ext/mbstring
Commit message (Collapse)AuthorAgeFilesLines
...
* add missing skipif conditionsAntony Dovgal2005-12-213-0/+6
| | | | | fix existing ones
* fix testAntony Dovgal2005-12-161-1/+1
|
* Fixed possible memory corruption inside mb_strcut().Ilia Alshanetsky2005-12-151-0/+7
|
* sync with HEADfoobar2005-12-061-1/+1
|
* MFH: nuke php3 legacyfoobar2005-12-061-14/+14
|
* 5th argument of mb_encode_mimeheader() was not acceptable.Rui Hirokawa2005-11-251-1/+1
|
* MFH: fixed 5307 unexpected header can be injected to mb_send_mail().Rui Hirokawa2005-11-231-2/+40
|
* MFH: fixed #35253 length of the encoded string vilolates a RFC.Rui Hirokawa2005-11-191-3/+4
|
* MFH: fixed garbled multibyte characters.Rui Hirokawa2005-11-051-1/+1
|
* NetWare LibC sdk has stdarg.hAnantha Kesari H Y2005-10-281-1/+13
| | | | | --Kamesh
* MFH: fix #34977 (Compile failure on MacOSX due to use of varargs.h)Antony Dovgal2005-10-261-2/+3
|
* fix compile warnings (again)Antony Dovgal2005-10-121-4/+4
|
* fixed compiler warningsIlia Alshanetsky2005-09-211-0/+1
|
* MFH: Fixed bug #34565 (mb_send_mail does not fetch mail.force_extra_parameters)Ilia Alshanetsky2005-09-211-0/+10
|
* - Fixed bug #34015foobar2005-08-051-18/+6
| | | | | # Whatever this test was supposed to try to test...sheesh..
* - Bumber up yearfoobar2005-08-037-7/+7
|
* Fix VPATH buildfoobar2005-05-291-11/+17
|
* - Added PHP_INSTALL_HEADERS() macrofoobar2005-05-071-0/+1
| | | | | | | - Fixed several VPATH build issues - Changed all awk calls to use $AWK - Changed all mkdir calls to use "$php_shtool mkdir"
* - Fix mbfl_encoding_detector_feed() and mbfl_mbfl_identify_encoding() behaviourMasaki Fujimoto2005-04-221-10/+12
|
* - Fix bug #32311 (mb_encode_mimeheader() does not properly escape characters.)Moriyoshi Koizumi2005-03-231-1/+20
|
* - Add Armenian encoding / NLS (patch by Hayk Chamyan)Moriyoshi Koizumi2005-03-2221-7/+349
|
* oniguruma updated to 3.7.1 and changed UChar to OnigUChar.Rui Hirokawa2005-03-1910-134/+125
|
* Revert bad fixfoobar2005-03-172-2/+2
|
* Build fixesRasmus Lerdorf2005-03-172-2/+2
|
* fix compile warningsAntony Dovgal2005-03-091-4/+4
|
* - Synch with the latest checkouts. (include fix by Joe Orton. Thanks.)Moriyoshi Koizumi2005-02-232-2/+2
|
* - Update libmbfl (fixes bug #32063).Moriyoshi Koizumi2005-02-221-0/+1
|
* - WS fix.Moriyoshi Koizumi2005-02-211-1/+0
|
* - Fix bug #28568 (known_post_content_types is not thread safe).Moriyoshi Koizumi2005-02-212-41/+30
| | | | | # What is eventually necessiated is entire SAPI redesign, I think.
* - Fix bug #30868 (evaluated pointer comparison in mbregex causes compileMoriyoshi Koizumi2005-02-211-1/+1
| | | | | failure).
* - Fix bug #30573 (compiler warning due to invalid type cast)Moriyoshi Koizumi2005-02-212-7/+8
|
* - Fix bug #29989 (type re_registers redefined in oniguruma.h)Moriyoshi Koizumi2005-02-211-0/+1
|
* - Fix compiler warnings.Moriyoshi Koizumi2005-02-2115-17/+40
|
* - Add testcases for bug #28220 and #30549.Moriyoshi Koizumi2005-02-212-0/+52
|
* - Forgot to add this one.Moriyoshi Koizumi2005-02-201-0/+42
|
* - Update libmbfl (fixes bug #30549 and #31911).Moriyoshi Koizumi2005-02-2087-5744/+19116
| | | | | - Update oniguruma to 3.7.0
* Removed unused vars.Ilia Alshanetsky2005-02-102-3/+2
|
* MFB: fix #31732Antony Dovgal2005-01-281-1/+1
|
* - Fix a critical bug that request-local settings leak to another request.Moriyoshi Koizumi2005-01-163-43/+92
|
* Don't scribble over the stack; icc compiler warning fixJoe Orton2005-01-101-1/+1
| | | | | from dcb314@hotmail.com via Red Hat bugzilla #143795.
* - Fix typo (avaliable -> available). (bug #28725)foobar2004-12-163-3/+3
|
* Update extensions to use /path/to/$PHP_LIBDIR rather than /path/to/libJoe Orton2004-11-031-2/+2
| | | | | to support multi-ABI platforms.
* - Fix test. I have no idea why the test was left this way.Moriyoshi Koizumi2004-10-091-3/+6
|
* - Sync with the latest codebase (fixes bug #28220).Moriyoshi Koizumi2004-10-085-16/+153
|
* - Avoid doubly symbol definition. Codes in the removed file has never beenMoriyoshi Koizumi2004-10-081-1/+0
| | | | | used anywhere.
* MFB: Enforce protocol on magic methods/functionsMarcus Boerger2004-08-021-6/+9
|
* - Nuke empty_string. It is a reminanent from the time where RETURN_FALSE()Andi Gutmans2004-07-191-1/+1
| | | | | | | | | | | | | | | used to return "" and not bool(false). It's not worth keeping it because STR_FREE() and zval_dtor() always have to check for it and it slows down the general case. In addition, it seems that empty_string has been abused quite a lot, and was used not only for setting zval's but generally in PHP code instead of "", which wasn't the intention. Last but not least, nuking empty_string should improve stability as I doubt every place correctly checked if they are not mistakenly erealloc()'ing it or calling efree() on it. NOTE: Some code is probably broken. Each extension maintainer should check and see that my changes are OK. Also, I haven't had time to touch PECL yet. Will try and do it tomorrow.
* - Fix VPATH build. (patch by Joe Orton)Moriyoshi Koizumi2004-07-191-0/+1
|
* - Rename php_compat.h to php_onig_compat.h to avoid name conflict.Moriyoshi Koizumi2004-07-192-1/+1
| | | | | (reported by Joe Orton, thanks.)
* Fixed input_filter functions need emalloc()ed values.Stefan Esser2004-06-261-0/+4
|