summaryrefslogtreecommitdiff
path: root/ext/standard/html.c
Commit message (Collapse)AuthorAgeFilesLines
* updating license information in the headers.James Cox2003-06-101-3/+3
|
* Added missing breakMoriyoshi Koizumi2003-05-081-0/+1
|
* Added "€" support for htmlentities() and html_entity_decode()Moriyoshi Koizumi2003-05-081-0/+5
|
* I should have tested more carefully..Moriyoshi Koizumi2003-05-081-7/+9
|
* Improved html_entity_decode() so it can handle multibyte charsets andMoriyoshi Koizumi2003-05-081-5/+126
| | | | | numeric entities.
* Added links to HTML entity resourcesMoriyoshi Koizumi2003-05-051-0/+9
|
* Fixed bug #23449Moriyoshi Koizumi2003-05-021-42/+46
|
* Fix compiler error on null statement in switchDavid Hill2003-04-241-0/+1
|
* MFB: &039; which is a single-quote may also come in as &39;Rasmus Lerdorf2003-04-221-0/+1
| | | | | I see no reason not to support both in html_entity_decode()
* Fixed bug #22834 (compile failure due to ugly implicit casts)Moriyoshi Koizumi2003-03-241-0/+2
|
* Added koi8-r, cp866, and cp1251 support for htmlentitiesMoriyoshi Koizumi2003-03-241-1/+97
|
* wrong place.Stefan Esser2003-03-081-1/+0
|
* fixing memory leakStefan Esser2003-03-081-0/+1
|
* 64-bit correction to variables passed to zend_parse_parametersDavid Hill2003-03-061-2/+3
| | | | | @64-bit correction to variables passed to zend_parse_parameters (Dave)
* int/long change.Ilia Alshanetsky2003-02-221-3/+3
|
* zend_error -> php_error_docref.Ilia Alshanetsky2003-01-241-1/+1
|
* Modified for NetWare.Anantha Kesari H Y2003-01-031-0/+2
|
* Fixed bug #21338 (crash inside html_entity_decode() when "" is passed).Ilia Alshanetsky2003-01-021-1/+4
| | | | | Added test case for the bug.
* Bump year.Sebastian Bergmann2002-12-311-1/+1
|
* Fixed misspelling of the Greek letter lambda,Ilia Alshanetsky2002-12-121-1/+1
| | | | | noticed by jmartin-php@notamusica.com.
* Fixed bug #20934 (htmlspecialchars returns latin1 from UTF-8)Moriyoshi Koizumi2002-12-121-3/+2
|
* Fix Win32 build.Sebastian Bergmann2002-11-161-0/+4
|
* Include php_config.h for HAVE_MBSTRINGMoriyoshi Koizumi2002-11-151-0/+1
|
* Added support for windows code pages.Moriyoshi Koizumi2002-11-111-0/+4
|
* WSMoriyoshi Koizumi2002-11-111-4/+4
|
* WS fixMoriyoshi Koizumi2002-10-291-7/+6
|
* Fix build if mbstring is enabled as shared extension.Moriyoshi Koizumi2002-10-251-55/+87
|
* Improved determine_charset() to look up SG(default_charset) valueMoriyoshi Koizumi2002-10-241-31/+31
|
* Fixed ISO-8859-1 handling.Moriyoshi Koizumi2002-10-241-0/+3
|
* Added € support to cp1252 tableMoriyoshi Koizumi2002-10-241-1/+1
|
* fix warningMarcus Boerger2002-10-231-1/+1
|
* Improved determine_charset() to use mbstring.internal_encoding when the lastMoriyoshi Koizumi2002-10-221-0/+35
| | | | | | param is a null string. (If the param is omitted, it takes iso-8859-1 as the default charset in favour of backwards compatibility.)
* few ws fixes.Andrey Hristov2002-10-031-33/+23
|
* Fix ZTS build.Sebastian Bergmann2002-09-261-7/+7
|
* Emit a warning when an unsupported charset is requested in htmlentities.Wez Furlong2002-09-261-2/+10
| | | | | Fixed #18521.
* Fix for #19570: last character in translation table is omitted.Wez Furlong2002-09-241-1/+1
|
* Description didn't match the function hereRasmus Lerdorf2002-08-281-1/+1
|
* WSWez Furlong2002-08-251-25/+25
|
* Unify error messagesDerick Rethans2002-07-081-1/+2
|
* Make sure len is defined hereRasmus Lerdorf2002-06-031-1/+2
|
* Add support for remaining entities in HTML 4 for the UTF-8 encoding inWez Furlong2002-05-051-3/+169
| | | | | | | | | htmlentities/htmlspecial chars. This is a fix for for #17008. # I would *really* appreciate it if someone with a good eye could verify # that all the entities are there and are correctly numbered; I've checked # it three times, but it's best to be sure.
* fixed possible bufferoverflow in get_next_charStefan Esser2002-03-161-19/+34
| | | | | | | | malformed input to htmlentities/htmlspecialchars with utf-8 encoding crashed the server ex: htmlentities("\xfd...(30times)", ENT_NOQUOTES, "utf-8");
* This should help with some build problems/warnings under win32.Wez Furlong2002-03-161-4/+3
| | | | | | | Someone still needs to add the streams.c file to the MSVC project/workspace though (there are so many that I don't really know what I am doing :-).
* * formatting, plus remove some old fopen wrappersWez Furlong2002-03-161-12/+12
|
* New PHP streams...Wez Furlong2002-03-151-48/+150
|
* quelling a warning, and ensuring now undefined behaviorDan Kalowsky2002-03-061-0/+4
|
* Maintain headers.Sebastian Bergmann2002-02-281-1/+1
|
* Update headers.Sebastian Bergmann2001-12-111-2/+2
|
* Convert to use new parameter parsing API.Andrei Zmievski2001-10-261-34/+11
|
* Back-substitute for Z_* macro's. If it breaks some extension (the script ↵Jeroen van Wolffelaar2001-09-251-4/+4
| | | | isn't optimal, it parses for example var->zval.value incorrect) please let me know.