aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-03-06 12:02:17 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-03-06 12:02:17 +0000
commiteb5ca2ea5ff55e2f6a49580afab5e0ddd0b2bf11 (patch)
tree4339a9e113f965cb42a3d44ee14a7f29b7ec4163 /actionpack/lib
parentfe6d929bf03650382db06ed63a199f9baa79102d (diff)
downloadrails-eb5ca2ea5ff55e2f6a49580afab5e0ddd0b2bf11.tar.gz
rails-eb5ca2ea5ff55e2f6a49580afab5e0ddd0b2bf11.tar.bz2
rails-eb5ca2ea5ff55e2f6a49580afab5e0ddd0b2bf11.zip
Removed the default border on link_image_to (it broke xhtml strict) -- can be specified with :border => 0 #517 [?/caleb]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@836 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/lib')
-rw-r--r--actionpack/lib/action_view/helpers/url_helper.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/actionpack/lib/action_view/helpers/url_helper.rb b/actionpack/lib/action_view/helpers/url_helper.rb
index 901374d877..6c5e338e54 100644
--- a/actionpack/lib/action_view/helpers/url_helper.rb
+++ b/actionpack/lib/action_view/helpers/url_helper.rb
@@ -39,7 +39,7 @@ module ActionView
#
# * <tt>:alt</tt> - If no alt text is given, the file name part of the +src+ is used (capitalized and without the extension)
# * <tt>:size</tt> - Supplied as "XxY", so "30x45" becomes width="30" and height="45"
- # * <tt>:border</tt> - Is set to 0 by default
+ # * <tt>:border</tt> - Draws a border around the link
# * <tt>:align</tt> - Sets the alignment, no special features
#
# The +src+ can be supplied as a...
@@ -70,8 +70,6 @@ module ActionView
if html_options["border"]
image_options["border"] = html_options["border"]
html_options.delete "border"
- else
- image_options["border"] = "0"
end
if html_options["align"]