homeschool 0.0.1.25 → 0.0.1.26
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/form_buildr.rb +1 -1
- metadata +1 -1
data/lib/form_buildr.rb
CHANGED
@@ -52,7 +52,7 @@ class ActionView::Helpers::FormBuilder
|
|
52
52
|
end
|
53
53
|
|
54
54
|
def labeled_collection_select(method, collection, value_method, text_method, options={}, html_options={})
|
55
|
-
label_for(method, options)
|
55
|
+
label_for(method, options) + collection_select(method, collection, value_method, text_method, options.without(:label, :no_colon), html_options)
|
56
56
|
end
|
57
57
|
|
58
58
|
rdef(/labeled_(.*)/) do |match, *args|
|