Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
htmlpurifier-3430939
Manage
Activity
Members
Labels
Plan
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Issue forks
htmlpurifier-3430939
Commits
2c9a5f92
Commit
2c9a5f92
authored
16 years ago
by
ezyang
Browse files
Options
Downloads
Patches
Plain Diff
Fix bug with pre HTML Purifier 3.1.0rc1
parent
ea61b1b8
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.txt
+4
-0
4 additions, 0 deletions
CHANGELOG.txt
htmlpurifier.module
+1
-1
1 addition, 1 deletion
htmlpurifier.module
with
5 additions
and
1 deletion
CHANGELOG.txt
+
4
−
0
View file @
2c9a5f92
5.x-1.3, released 2008-05-12
- Bugfix release, fix fatal error on configure page when using version
of HTML Purifier earlier than 3.1.0rc1
5.x-1.2, released 2008-05-11
# WARNING: REALLY, the last Drupal 5.x release. We decided to do another release
because the previous one was lacking in some major features.
...
...
This diff is collapsed.
Click to expand it.
htmlpurifier.module
+
1
−
1
View file @
2c9a5f92
...
...
@@ -109,7 +109,7 @@ function _htmlpurifier_settings($format) {
if
(
!
$enabled
)
{
$form
[
'htmlpurifier'
][
'htmlpurifier_allowedhtml'
][
"htmlpurifier_allowedhtml_
$format
"
][
'#disabled'
]
=
TRUE
;
}
if
(
!
defined
(
'HTMLPurifier::VERSION'
)
&&
version_compare
(
HTMLPurifier
::
VERSION
,
'3.1.0-dev'
,
'>='
))
{
if
(
defined
(
'HTMLPurifier::VERSION'
)
&&
version_compare
(
HTMLPurifier
::
VERSION
,
'3.1.0-dev'
,
'>='
))
{
$form
[
'htmlpurifier'
][
'htmlpurifier_allowedhtml'
][
"htmlpurifier_forbiddenelements_
$format
"
]
=
array
(
'#type'
=>
'textarea'
,
'#title'
=>
t
(
'Forbidden elements'
),
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment