summaryrefslogtreecommitdiff
path: root/ext/mbstring
Commit message (Collapse)AuthorAgeFilesLines
...
* - Fixed memory leakFelipe Pena2008-12-251-0/+2
|
* Fix bug #46738 - Segfault when mb_detect_encoding() fails.Scott MacVicar2008-12-111-1/+1
|
* Remove duff comment produced by the test generator toolAnt Phillips2008-12-056-25/+0
|
* MBString tests: checked on PHP 5.2.6, 5.3 and 6.0 (Windows, Linux and Linux ↵Ant Phillips2008-12-051-0/+72
| | | | 64 bit).
* MBString tests: checked on PHP 5.2.6, 5.3 and 6.0 (Windows, Linux and Linux ↵Ant Phillips2008-12-05121-462/+11088
| | | | 64 bit).
* MFB: Fixed bug #46626 (mb_convert_case does not handle apostrophe correctly)Ilia Alshanetsky2008-11-241-1/+1
|
* - Added 'static' into ZEND_BEGIN_ARG_INFO_EX macro (again!)Felipe Pena2008-11-171-54/+0
|
* - Revert ZEND_BEGIN_ARG_INFO changeFelipe Pena2008-11-021-0/+54
|
* - Added 'static' into ZEND_BEGIN_ARG_INFO_EX macroFelipe Pena2008-10-241-54/+0
|
* - Fix bug #45722 (mb_check_encoding() crashes).Moriyoshi Koizumi2008-10-162-8/+17
|
* - Reenable ini_set("mbstring.internal_encoding", VALUE) to work on runtime.Moriyoshi Koizumi2008-09-131-1/+2
| | | | | (noticed by Antony. Thanks!)
* - Properly initialize/finalize the library. This plugs the leaks caused byMoriyoshi Koizumi2008-09-131-0/+2
| | | | | onig_new().
* - Adding tests.Moriyoshi Koizumi2008-09-132-0/+55
|
* - mb_encoding_aliases() is more consistent with mb_preferred_mime_name()Moriyoshi Koizumi2008-09-132-6/+5
| | | | | despite the unconformance with the naming convention.
* - The mb_list_* issue has been resolved in the following way:Moriyoshi Koizumi2008-09-121-135/+23
| | | | | | | | - Keep the same prototype as 5.2 for mb_list_encodings(). - Add mb_list_encoding_aliases() with the mandatory parameter. - Remove mb_list_mime_names() as the list can be made from iteration on mb_list_encodings() with mb_preferred_mime_name().
* * Use memcmp() for binary safety.Moriyoshi Koizumi2008-09-121-14/+7
|
* MFB: Fixed bug #46042 (memory leaks with reflection ofIlia Alshanetsky2008-09-101-2/+2
| | | | | mb_convert_encoding())
* - New parameter parsing APIFelipe Pena2008-08-1822-142/+116
| | | | | - Fixed tests
* fix build when host machine doest has pcre installedNuno Lopes2008-08-111-1/+1
|
* - More fixes for bug #45691Moriyoshi Koizumi2008-08-041-4/+8
|
* - No C++ comments in C files!Jani Taskinen2008-08-031-6/+6
|
* - Forgot to take account of the case when mbstring.language is processedMoriyoshi Koizumi2008-08-031-4/+23
| | | | | afterwards.
* - Fixed bug #45691 (Some per-dir or runtime settings may leak into other ↵Moriyoshi Koizumi2008-08-022-124/+134
| | | | requests).
* - Add a test for bug #43993.Moriyoshi Koizumi2008-08-011-0/+26
|
* - Fixed bug #43993 (mb_substr_count() behaves differently to substr_count() ↵Moriyoshi Koizumi2008-08-011-0/+1
| | | | with overlapping needles)
* - Fixed bug #44617 (wrong HTML entity output when substitute_character=entity)Moriyoshi Koizumi2008-07-312-56/+60
|
* - fix testJani Taskinen2008-07-311-0/+2
|
* - Fix warningsMoriyoshi Koizumi2008-07-252-7/+7
|
* - Fix wrong castMoriyoshi Koizumi2008-07-251-1/+1
|
* - fix a typo in mb_stripos() that caused segfault.Moriyoshi Koizumi2008-07-259-2/+1221
| | | | | (noticed by bs@php.net, thanks).
* - Fix win32 buildMoriyoshi Koizumi2008-07-241-0/+1
|
* - Fix tests.Moriyoshi Koizumi2008-07-246-10/+10
|
* - Fixed warnings.Moriyoshi Koizumi2008-07-244-70/+69
|
* - Add mbstring.http_output_conv_mimetypes that allows common non-textMoriyoshi Koizumi2008-07-2417-33/+425
| | | | | | types such as "application/xhtml+xml" to be converted by mb_output_handler().
* - Bug #45572Moriyoshi Koizumi2008-07-201-2/+6
|
* - Fix ZTS buildMoriyoshi Koizumi2008-07-172-4/+4
|
* - Removed dependencies from php_mbregex to oniguruma typesMoriyoshi Koizumi2008-07-174-141/+215
|
* - Oops.Moriyoshi Koizumi2008-07-161-2/+2
|
* - Added a new configure option --with-onig=[DIR] that allows the extensionMoriyoshi Koizumi2008-07-167-101/+230
| | | | | | | to link to the external oniguruma library. - Prevent libmbfl files from being installed when --with-libmbfl is specified. - Fixed mb_ereg_replace() to work with unicode strings.
* - indentation fix & reenable mbregex again.Moriyoshi Koizumi2008-07-151-2/+19
|
* - fix build with VC9 PSDK6.xPierre Joye2008-07-121-1/+3
|
* MFB: - Fixed bug #45486 (mb_send_mail(); header 'Content-Type: text/plain; ↵Felipe Pena2008-07-111-1/+1
| | | | charset=' parsing incorrect)
* - MFB: Removed unused variablesFelipe Pena2008-07-071-1/+0
|
* MFB:Felipe Pena2008-07-072-98/+427
| | | | | | - Added arginfo - Removed unnecessary #include "zend_arg_defs.c"
* MFB: string length -> intAlexey Zakhlestin2008-07-071-7/+9
|
* MFB: updated to the new parameter-parsing apiAlexey Zakhlestin2008-07-071-227/+164
|
* MFB: added arginfo (fixes #45388)Alexey Zakhlestin2008-07-071-2/+22
|
* fixed bug #27421 (by david at dfoerster dot de) mbstring.func_overload set ↵Rui Hirokawa2008-06-131-3/+8
| | | | in .htaccess becomes global
* - killed off UEXPECTSteph Fox2008-05-2779-5114/+53
| | | | | | - com_dotnet gets a .cvsignore - Ulf will take care of mysql extensions, rest complete
* MFBRui Hirokawa2008-02-162-1/+3
|