aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers
diff options
context:
space:
mode:
authorPratik Naik <pratiknaik@gmail.com>2008-05-22 15:16:12 +0100
committerPratik Naik <pratiknaik@gmail.com>2008-05-22 15:16:12 +0100
commite32deb595f66e8be7aeb9aeb2ef796994f524584 (patch)
treeb5ec35226d8c3c8279df332edbdd450055ffc80b /actionpack/lib/action_view/helpers
parent4617139bcc21ccb875d25baf06c3124692061cf2 (diff)
parentcff2291df5d1df106ae8cf116655f0703f53f8c3 (diff)
downloadrails-e32deb595f66e8be7aeb9aeb2ef796994f524584.tar.gz
rails-e32deb595f66e8be7aeb9aeb2ef796994f524584.tar.bz2
rails-e32deb595f66e8be7aeb9aeb2ef796994f524584.zip
Merge commit 'mainstream/master'
Diffstat (limited to 'actionpack/lib/action_view/helpers')
-rw-r--r--actionpack/lib/action_view/helpers/form_helper.rb2
-rw-r--r--actionpack/lib/action_view/helpers/text_helper.rb2
2 files changed, 3 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/helpers/form_helper.rb b/actionpack/lib/action_view/helpers/form_helper.rb
index 940f1c9b5d..3d80d508b9 100644
--- a/actionpack/lib/action_view/helpers/form_helper.rb
+++ b/actionpack/lib/action_view/helpers/form_helper.rb
@@ -635,6 +635,8 @@ module ActionView
value != 0
when String
value == checked_value
+ when Array
+ value.include?(checked_value)
else
value.to_i != 0
end
diff --git a/actionpack/lib/action_view/helpers/text_helper.rb b/actionpack/lib/action_view/helpers/text_helper.rb
index 55d2a68327..b710157f51 100644
--- a/actionpack/lib/action_view/helpers/text_helper.rb
+++ b/actionpack/lib/action_view/helpers/text_helper.rb
@@ -464,7 +464,7 @@ module ActionView
[-\w]+ # subdomain or domain
(?:\.[-\w]+)* # remaining subdomains or domain
(?::\d+)? # port
- (?:/(?:(?:[~\w\+@%=-]|(?:[,.;:][^\s$]))+)?)* # path
+ (?:/(?:(?:[~\w\+@%=\(\)-]|(?:[,.;:][^\s$]))+)?)* # path
(?:\?[\w\+@%&=.;-]+)? # query string
(?:\#[\w\-]*)? # trailing anchor
)