Felipe Pena
e4ca0ed09f
- Year++
2012-01-01 13:15:04 +00:00
Xinchen Hui
aa5ce0b58d
warning: suggest parentheses around && within ||
2011-11-25 07:50:18 +00:00
Felipe Pena
927bf09c29
- Year++
2011-01-01 02:19:59 +00:00
Gustavo André dos Santos Lopes
30d6cc8919
- Fixed get_next_char(), used by htmlentities/htmlspecialchars, accepting
...
certain ill-formed UTF-8 sequences.
2010-10-14 19:14:06 +00:00
Gustavo André dos Santos Lopes
99b613cbc8
- Added a 3rd parameter to get_html_translation_table. It now takes a charset
...
hint, like htmlentities et al.
- Fixed bug #49407 (get_html_translation_table doesn't handle UTF-8).
- Fixed bug #25927 (get_html_translation_table calls the ' ' instead of
').
- Fixed tests for get_html_translation_table and unified the Windows and
non-Windows versions of the tests.
2010-10-12 02:51:11 +00:00
Gustavo André dos Santos Lopes
4e2fd7eeba
- Fixed a typo in rev #304208 (24 instead of 34/'"').
...
- Improved the test bug53021.phpt to reflect other fixes in rev #304208 .
- Updated NEWS to reflect other fixes in rev #304208 .
2010-10-08 17:27:19 +00:00
Gustavo André dos Santos Lopes
485a094334
- Fixed bug #53021 (In html_entity_decode, failure to convert numeric entities with ENT_NOQUOTES and ISO-8859-1).
2010-10-08 16:19:58 +00:00
Moriyoshi Koizumi
73ba495674
- Forgot to commit this patch. Sorry.
2010-03-12 16:19:25 +00:00
Sebastian Bergmann
9ba1e81665
sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.php
2010-01-03 09:23:27 +00:00
Moriyoshi Koizumi
7d9a7dbad6
- Fix bug #46478 (htmlentities() uses obsolete mapping table for character
...
entity references)
2009-12-22 05:50:34 +00:00
Moriyoshi Koizumi
413196c574
- Take account of surrogate pairs.
2009-12-07 15:41:43 +00:00
Moriyoshi Koizumi
20737bac6a
- Bug #49785 : take 5. What the hell happened to me...
2009-10-13 05:18:37 +00:00
Moriyoshi Koizumi
884cf3f1c0
- Bug #49785 : take 4 - typo. this flaw is unharmful since the return value of get_next_char() is only used when UTF-8 is specified to the third argument.
2009-10-12 14:29:45 +00:00
Moriyoshi Koizumi
1835a63dfd
- A couple more fix for my previous fix.
...
(one of the fix by Arnaud Le Blanc. Thanks!)
2009-10-11 23:52:33 +00:00
Moriyoshi Koizumi
9d19866476
- Fixed bug #49785 (insufficient input string validation of htmlspecialchars()).
2009-10-09 10:02:38 +00:00
Sebastian Bergmann
08659c2dcd
MFH: Bump copyright year, 3 of 3.
2008-12-31 11:15:49 +00:00
Arnaud Le Blanc
18794addbd
MFH: Added ENT_IGNORE as a compatibility flag for htmlentities() and
...
htmlspecialchars() to skip multibyte sequences intead of returning an
empty string (as iconv's //IGNORE). These functions will still never
return an invalid or incomplete multibyte sequence.
Fixes #43896
2008-11-26 03:00:06 +00:00
Arnaud Le Blanc
a05edaf2bd
MFB 5.2
2008-11-26 02:43:16 +00:00
Arnaud Le Blanc
d69dfa4b9f
MFH: initialize optional vars
2008-10-21 22:08:38 +00:00
Moriyoshi Koizumi
0699894884
- MFH: beware of signedness
2008-08-18 03:26:21 +00:00
Arnaud Le Blanc
71e50de4fc
MFH: Fixed bug #45581 (htmlspecialchars() double encoding &#x hex items)
2008-08-10 13:26:13 +00:00
Felipe Pena
fce4f9600e
MFB: Fixed bug #44703 (htmlspecialchars() does not detect bad character set argument)
2008-04-11 19:06:12 +00:00
Stanislav Malyshev
223a53fdeb
rm cruft
2008-01-29 22:03:01 +00:00
Antony Dovgal
37a607c7f8
fix #43927 (koi8r is missing from html_entity_decode())
...
patch by andy at demos dot su
2008-01-28 23:07:12 +00:00
Scott MacVicar
23e3baf62d
Fix html_entity_decode when converting numeric html entities, the numeric values for the extended characters don't correspond to that of windows-1251 and cp866.
2008-01-25 18:10:45 +00:00
Sebastian Bergmann
d1dded8751
MFH: Bump copyright year, 2 of 2.
2007-12-31 07:17:19 +00:00
Jani Taskinen
14ca778ed9
MFH:- Revert previous patch, it was correct to do this, error is logged if logging is enabled
2007-12-11 12:26:43 +00:00
Jani Taskinen
b984960e81
MFH: fix error displaying
2007-12-11 11:29:09 +00:00
Jani Taskinen
aa3eee1dce
MFH:- Moved the old regex functions to own extension: ereg
2007-10-05 15:00:09 +00:00
Stanislav Malyshev
6e1dfff1ed
MFB do not accept partial multibyte sequences in html* functions
2007-10-03 05:05:08 +00:00
Nuno Lopes
2c5368c013
fix handling of && by htmlentities 'no-double-encode'
...
expand the test cases
2007-05-27 15:57:11 +00:00
Nuno Lopes
452524fe3a
fix the new 'no-double-encoding' feature of htmlspecialchars() (the length for char search was wrong. this could lead to crashes..)
2007-05-27 15:45:18 +00:00
Hannes Magnusson
df03be1a3b
Allow skipping hint_charset (fixes ext/standard/tests/strings/htmlentities18.phpt)
2007-05-25 14:09:02 +00:00
Hannes Magnusson
cdd37424a8
Update proto&arginfo for double_encode in htmlspecialchars()&htmlentities()
2007-05-22 15:38:27 +00:00
Ilia Alshanetsky
c98cbb6020
[DOC] Added a 4th parameter flag to htmlspecialchars() and htmlentities()
...
that makes the function not encode existing html entities. The feature is
disabled by default and can be activated by passing FALSE as the 4th param
2007-05-22 12:37:00 +00:00
Ilia Alshanetsky
efad70c2cc
snprintf() -> slprintf()
2007-02-27 03:28:17 +00:00
Ilia Alshanetsky
27c6f40783
Eliminate strncpy() and simplify code
2007-02-24 17:18:24 +00:00
Ilia Alshanetsky
5ecffe6eb5
Use strlcpy() rather then strcpy()
2007-02-21 03:59:05 +00:00
Antony Dovgal
84a827e0d4
MFH
2007-01-18 16:21:32 +00:00
Sebastian Bergmann
4223aa4d5e
MFH: Bump year.
2007-01-01 09:36:18 +00:00
Antony Dovgal
6aec52bde7
MFH
2006-12-21 01:18:28 +00:00
Ilia Alshanetsky
3a533934c7
Added missing boundary checks.
2006-11-01 01:55:11 +00:00
Hannes Magnusson
39219cf7fe
protos
2006-10-02 07:58:13 +00:00
Antony Dovgal
f3c1722b0c
MFH: don't try to use "auto", "none" and "pass" charsets returned from mbstring
2006-08-15 15:09:38 +00:00
Rasmus Lerdorf
8fe5bc7010
MFH - binary safety patch from Moriyoshi
2006-02-25 21:32:11 +00:00
foobar
5bd93221a8
bump year and license version
2006-01-01 12:51:34 +00:00
foobar
23e671a51e
- Bumber up year
2005-08-03 14:08:58 +00:00
foobar
6cea418c31
Netware also uses autoconf based config now
2005-06-30 14:11:13 +00:00
Joe Orton
5815b03511
Mark pointers in entity tables as const.
2005-05-11 12:54:29 +00:00
Joe Orton
bd2e99ee50
- Fixed bug #29119 (html_decode_entities handling of U+0152-U+0192 range)
...
(merge error from 4.3)
2005-05-11 12:43:07 +00:00