Index: gloc-rails-text.rb
--- gloc-rails-text.rb Base (BASE)
+++ gloc-rails-text.rb Locally Modified (Based On LOCAL)
@@ -58,7 +58,7 @@
       alias_method_chain :datetime_select, :gloc
       
       # This method has been modified so that a localized string can be appended to the day numbers.
-      def select_day(date, options = {})
+      def select_day(date, options = {}, html_options = {})
         if options[:use_hidden]
           val = date ? (date.kind_of?(Fixnum) ? date : date.day) : ''
           hidden_html(options[:field_name] || 'day', val, options)
@@ -88,7 +88,7 @@
       # * the month names are localized.
       # * it uses options: <tt>:min_date</tt>, <tt>:max_date</tt>, <tt>:start_month</tt>, <tt>:end_month</tt>
       # * a localized string can be appended to the month numbers when the <tt>:use_month_numbers</tt> option is specified.
-      def select_month(date, options = {})
+      def select_month(date, options = {}, html_options = {})
         if options[:use_hidden]
           val = date ? (date.kind_of?(Fixnum) ? date : date.month) : ''
           hidden_html(options[:field_name] || 'month', val, options)
@@ -132,7 +132,7 @@
       # This method has been modified so that
       # * it uses options: <tt>:min_date</tt>, <tt>:max_date</tt>
       # * a localized string can be appended to the years numbers.
-      def select_year(date, options = {})
+      def select_year(date, options = {}, html_options = {})
         if options[:use_hidden]
           val = date ? (date.kind_of?(Fixnum) ? date : date.year) : ''
           hidden_html(options[:field_name] || 'year', val, options)
