From eb5ca2ea5ff55e2f6a49580afab5e0ddd0b2bf11 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sun, 6 Mar 2005 12:02:17 +0000 Subject: 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 --- actionpack/lib/action_view/helpers/url_helper.rb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'actionpack/lib') 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 # # * :alt - If no alt text is given, the file name part of the +src+ is used (capitalized and without the extension) # * :size - Supplied as "XxY", so "30x45" becomes width="30" and height="45" - # * :border - Is set to 0 by default + # * :border - Draws a border around the link # * :align - 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"] -- cgit v1.2.3