diff options
author | Ryan Bigg <radarlistener@gmail.com> | 2009-08-22 09:06:46 +1000 |
---|---|---|
committer | Ryan Bigg <radarlistener@gmail.com> | 2009-08-22 09:06:46 +1000 |
commit | c52be361484f5a0df7e413bc6640cf1d4bcb5ef5 (patch) | |
tree | 70c38ac9ba7703182fe3d5b97d058fd3cef4a986 /actionpack | |
parent | 8b5f9e9d9c9c1ee47555e4108c5a02bc1ff6ef96 (diff) | |
download | rails-c52be361484f5a0df7e413bc6640cf1d4bcb5ef5.tar.gz rails-c52be361484f5a0df7e413bc6640cf1d4bcb5ef5.tar.bz2 rails-c52be361484f5a0df7e413bc6640cf1d4bcb5ef5.zip |
Add missing end ERB tag.
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_view/helpers/sanitize_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/helpers/sanitize_helper.rb b/actionpack/lib/action_view/helpers/sanitize_helper.rb index d89b955317..e93034d224 100644 --- a/actionpack/lib/action_view/helpers/sanitize_helper.rb +++ b/actionpack/lib/action_view/helpers/sanitize_helper.rb @@ -21,7 +21,7 @@ module ActionView # # Custom Use (only the mentioned tags and attributes are allowed, nothing else) # - # <%= sanitize @article.body, :tags => %w(table tr td), :attributes => %w(id class style) + # <%= sanitize @article.body, :tags => %w(table tr td), :attributes => %w(id class style) %> # # Add table tags to the default allowed tags # |