summaryrefslogtreecommitdiff
path: root/ext/mbstring/mbstring.c
Commit message (Collapse)AuthorAgeFilesLines
* Applied the right fix for bug #23016Moriyoshi Koizumi2003-05-121-9/+1
|
* Fixed an issue that zend-multibyte's behaviour doesn't reflect the changeMoriyoshi Koizumi2003-05-041-0/+3
| | | | | to mbstring.internal_encoding ini setting.
* emalloc -> safe_emallocIlia Alshanetsky2003-05-011-4/+4
|
* Moved copyright notice to the better place.Moriyoshi Koizumi2003-04-251-1/+4
|
* Added a bogus copyright notice.Moriyoshi Koizumi2003-04-251-0/+1
|
* Fixed crash in mb_convert_encoding() that occurs when a void array isMoriyoshi Koizumi2003-04-011-1/+1
| | | | | passed as the third parameter
* Removed redundant aliases & CS fix.Moriyoshi Koizumi2003-03-281-32/+19
|
* Renamed OnUpdateInt -> OnUpdateLong to prevent further misunderstandings.foobar2003-03-071-2/+2
| | | | | | # Intentionally left out any 'alias' for it, this way 3rd party extension # maintainers will really NOTICE the change.
* Added missing phpinfo entry (Russian support)Moriyoshi Koizumi2003-03-051-0/+3
|
* 64bit long fix: patch by Dave HillMoriyoshi Koizumi2003-03-041-7/+7
|
* Fixed bug #22330 (overloaded strrpos() gives wrong results)Moriyoshi Koizumi2003-02-201-1/+1
| | | | | Patch by david at santinoli dot com. Thanks!
* Input Filter support. See README.input_filter for details.Rasmus Lerdorf2003-02-191-1/+1
| | | | | @- Input Filter support added. See README.input_filter. (Rasmus)
* Added description for the hand-made finite state machine.Moriyoshi Koizumi2003-02-181-0/+11
|
* Fixed mb_send_mail() so that Content-Type and Content-Transfer-EncodingMoriyoshi Koizumi2003-02-181-13/+296
| | | | | | headers are overridable by additional header parameters. This patch fixes bug #21985 and bug #22064.
* Fixed ZTS buildMoriyoshi Koizumi2003-02-111-2/+2
|
* zend_get_parameters_* => zend_parse_parametersMoriyoshi Koizumi2003-02-031-316/+205
|
* Really fixed proto.Moriyoshi Koizumi2003-02-031-1/+1
| | | | | # sorry for messing
* Oops! wrong commit. Reverting...Moriyoshi Koizumi2003-02-031-35/+76
|
* Fixed protoMoriyoshi Koizumi2003-02-031-76/+35
|
* Fixed a mb_send_mail() bug that has been reported in php-i18n@lists.php.netMoriyoshi Koizumi2003-01-311-2/+12
| | | | | See http://lists.php.net/article.php?group=php.i18n&article=427
* ARG_COUNT(ht) -> ZEND_NUM_ARGS().Ilia Alshanetsky2003-01-211-1/+1
|
* Removed pointless memory allocation checks.Ilia Alshanetsky2003-01-181-142/+113
|
* Bump year.Sebastian Bergmann2002-12-311-1/+1
|
* Forgot to adjust this oneMoriyoshi Koizumi2002-11-251-1/+1
|
* Renamed several internal functions for consistencyMoriyoshi Koizumi2002-11-251-10/+13
|
* Updated license information headersMoriyoshi Koizumi2002-11-231-1/+1
|
* Separated GPC related part from mbstring.cMoriyoshi Koizumi2002-11-231-337/+7
|
* mbstring is supporting CJK + some other encodings.Rui Hirokawa2002-11-211-1/+1
|
* Function renamings: s/php_mbstr_/php_mb/.Moriyoshi Koizumi2002-11-191-28/+28
| | | | | # all of which are static so I don't see any problem for now.
* Unified the duplicated portions.Moriyoshi Koizumi2002-11-191-163/+45
| | | | | # No need to merge this patch to the branch
* Fixed possible buffer over run in php_mb_safe_strrchr_ex()Moriyoshi Koizumi2002-11-141-4/+13
|
* Moved some mbregex related portions from mbstring.c to php_mbregex.cMoriyoshi Koizumi2002-11-141-83/+7
| | | | | # No need to merge this change to PHP_4_3 branch
* MFB (made mbstring compile on windows again).Edin Kadribasic2002-11-131-20/+20
|
* Prevented unwanted encoding detections in mb_send_mail()Moriyoshi Koizumi2002-11-131-6/+9
| | | | | # This patch shouldn't break BC
* Fixed mb_encode_mimeheader() to work with languages other than Japanese andMoriyoshi Koizumi2002-11-131-11/+4
| | | | | English
* Fixed a buffer over-run bug in case a function to be overloaded doesn't exist.Moriyoshi Koizumi2002-11-131-15/+7
| | | | | # This patch was made by Ilia.
* CosmeticsMoriyoshi Koizumi2002-11-121-7/+19
|
* Fixed a function overloading related bug.Moriyoshi Koizumi2002-11-121-4/+5
| | | | | # Yet I suspect the problem is in another place...
* Added neutral language spec for backwards compatibilityMoriyoshi Koizumi2002-11-121-1/+1
|
* fix warningsMarcus Boerger2002-11-121-2/+2
|
* Fixed mb_send_mail() so that it correctly handles the language setting.Moriyoshi Koizumi2002-11-101-10/+6
|
* Fixed OnUpdate_mbstring_language so that change for mbstring.languageMoriyoshi Koizumi2002-11-101-12/+5
| | | | | would be reflected to the setting properly
* Changed the default settings so that it shouldn't affect htmlentities()Moriyoshi Koizumi2002-11-101-8/+8
|
* These changes seems to have bad effect on htmlentities().Moriyoshi Koizumi2002-11-101-3/+1
| | | | | Remove it.
* Fixed typoMoriyoshi Koizumi2002-11-091-2/+2
|
* Added mb_substr_count() as per the request #15097Moriyoshi Koizumi2002-11-091-0/+57
|
* Fixed PHP_INI_MH(OnUpdate_mbstring_language) so that ini entry valuesMoriyoshi Koizumi2002-11-091-14/+16
| | | | | are properly updated.
* style keisatsuMoriyoshi Koizumi2002-11-031-81/+90
|
* Reduced compiler warningsMoriyoshi Koizumi2002-11-021-39/+39
|
* Remove useless check.Yasuo Ohgaki2002-10-261-1/+1
| | | | | # Problem was in other place