1
0
mirror of https://github.com/ezyang/htmlpurifier.git synced 2025-08-03 20:58:11 +02:00

Release 2.1.5

git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/branches/php4@1814 48356398-32a2-884e-a903-53898d9a118a
This commit is contained in:
Edward Z. Yang
2008-06-19 22:57:15 +00:00
parent 2cc829a8cf
commit f38e81785f
7 changed files with 13 additions and 12 deletions

View File

@@ -31,7 +31,7 @@ PROJECT_NAME = HTMLPurifier
# This could be handy for archiving the generated documentation or # This could be handy for archiving the generated documentation or
# if some version control system is used. # if some version control system is used.
PROJECT_NUMBER = 2.1.4 PROJECT_NUMBER = 2.1.5
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put. # base path where the generated documentation will be put.

2
NEWS
View File

@@ -14,7 +14,7 @@ ERRATA
If you desire to use it, please use it with the latest, PHP5-only version of If you desire to use it, please use it with the latest, PHP5-only version of
HTML Purifier. HTML Purifier.
2.1.5, unknown release date 2.1.5, released 2008-06-19
! More robust imagecrash protection with height/width CSS with %CSS.MaxImgLength, ! More robust imagecrash protection with height/width CSS with %CSS.MaxImgLength,
and height/width HTML with %HTML.MaxImgLength. and height/width HTML with %HTML.MaxImgLength.
- AttrValidator operations are now atomic; updates to attributes are not - AttrValidator operations are now atomic; updates to attributes are not

View File

@@ -1 +1 @@
2.1.4 2.1.5

View File

@@ -1,6 +1,7 @@
Security release 2.1.4 is a backport release that fixes a vulnerability Security and bugfix release 2.1.5 is a backport that fixes two vulnerabilities
related to URI handling. In addition, it also includes a number of related to CSS, one of which only occurs under Shift_JIS. It also improves
bugfixes that have accumulated in the HTML Purifier 3 series but had imagecrash protection (percent CSS width and height is now disabled for
not been merged back yet. Please remember that HTML Purifier 2.1 will images, and you can control the bounds with %CSS.MaxImgLength and
be deprecated and will be officially dropped by the end of 2008. Please %HTML.MaxImgLength). Finally, there are number of bug fixes, most notably
only use it for legacy PHP 4 installs. support for text-decoration: none, improved adherence to Unicode and increased
percent encoding checks.

View File

@@ -22,7 +22,7 @@
*/ */
/* /*
HTML Purifier 2.1.4 - Standards Compliant HTML Filtering HTML Purifier 2.1.5 - Standards Compliant HTML Filtering
Copyright (C) 2006-2007 Edward Z. Yang Copyright (C) 2006-2007 Edward Z. Yang
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
@@ -83,7 +83,7 @@ since 2.0.0.
class HTMLPurifier class HTMLPurifier
{ {
var $version = '2.1.4'; var $version = '2.1.5';
var $config; var $config;
var $filters = array(); var $filters = array();

View File

@@ -42,7 +42,7 @@ class HTMLPurifier_Config
/** /**
* HTML Purifier's version * HTML Purifier's version
*/ */
var $version = '2.1.4'; var $version = '2.1.5';
/** /**
* Two-level associative array of configuration directives * Two-level associative array of configuration directives