aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRyan Bigg <radarlistener@gmail.com>2009-08-22 09:06:46 +1000
committerRyan Bigg <radarlistener@gmail.com>2009-08-22 09:06:46 +1000
commitc52be361484f5a0df7e413bc6640cf1d4bcb5ef5 (patch)
tree70c38ac9ba7703182fe3d5b97d058fd3cef4a986
parent8b5f9e9d9c9c1ee47555e4108c5a02bc1ff6ef96 (diff)
downloadrails-c52be361484f5a0df7e413bc6640cf1d4bcb5ef5.tar.gz
rails-c52be361484f5a0df7e413bc6640cf1d4bcb5ef5.tar.bz2
rails-c52be361484f5a0df7e413bc6640cf1d4bcb5ef5.zip
Add missing end ERB tag.
-rw-r--r--actionpack/lib/action_view/helpers/sanitize_helper.rb2
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
#